mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-15 22:41:30 +00:00
refactor glided rose kata
This commit is contained in:
parent
e43a1a270f
commit
c7d64d3330
@ -7,43 +7,39 @@ class GildedRose
|
|||||||
def update_quality()
|
def update_quality()
|
||||||
@items.each do |item|
|
@items.each do |item|
|
||||||
if item.name != "Aged Brie" and item.name != "Backstage passes to a TAFKAL80ETC concert"
|
if item.name != "Aged Brie" and item.name != "Backstage passes to a TAFKAL80ETC concert"
|
||||||
if item.quality > 0
|
quality_greater_than_0(item)
|
||||||
if item.name != "Sulfuras, Hand of Ragnaros"
|
else
|
||||||
|
quantity_less_than_50(item)
|
||||||
|
end
|
||||||
|
update_sell_in(item)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def quality_greater_than_0(item)
|
||||||
|
if item.quality > 0
|
||||||
|
if item.name != "Sulfuras, Hand of Ragnaros"
|
||||||
|
item.quality = item.quality - 1
|
||||||
|
if item.name == "Conjured"
|
||||||
|
if item.quality > 0
|
||||||
item.quality = item.quality - 1
|
item.quality = item.quality - 1
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
else
|
end
|
||||||
if item.quality < 50
|
end
|
||||||
item.quality = item.quality + 1
|
end
|
||||||
if item.name == "Backstage passes to a TAFKAL80ETC concert"
|
|
||||||
if item.sell_in < 11
|
def quantity_less_than_50(item)
|
||||||
if item.quality < 50
|
if item.quality < 50
|
||||||
item.quality = item.quality + 1
|
item.quality = item.quality + 1
|
||||||
end
|
if item.name == "Backstage passes to a TAFKAL80ETC concert"
|
||||||
end
|
if item.sell_in < 11
|
||||||
if item.sell_in < 6
|
if item.quality < 50
|
||||||
if item.quality < 50
|
item.quality = item.quality + 1
|
||||||
item.quality = item.quality + 1
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
if item.sell_in < 6
|
||||||
if item.name != "Sulfuras, Hand of Ragnaros"
|
|
||||||
item.sell_in = item.sell_in - 1
|
|
||||||
end
|
|
||||||
if item.sell_in < 0
|
|
||||||
if item.name != "Aged Brie"
|
|
||||||
if item.name != "Backstage passes to a TAFKAL80ETC concert"
|
|
||||||
if item.quality > 0
|
|
||||||
if item.name != "Sulfuras, Hand of Ragnaros"
|
|
||||||
item.quality = item.quality - 1
|
|
||||||
end
|
|
||||||
end
|
|
||||||
else
|
|
||||||
item.quality = item.quality - item.quality
|
|
||||||
end
|
|
||||||
else
|
|
||||||
if item.quality < 50
|
if item.quality < 50
|
||||||
item.quality = item.quality + 1
|
item.quality = item.quality + 1
|
||||||
end
|
end
|
||||||
@ -51,6 +47,40 @@ class GildedRose
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def update_sell_in(item)
|
||||||
|
if item.name != "Sulfuras, Hand of Ragnaros"
|
||||||
|
item.sell_in = item.sell_in - 1
|
||||||
|
end
|
||||||
|
if item.sell_in < 0
|
||||||
|
check_expired_item(item)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def check_expired_item(item)
|
||||||
|
if item.name != "Aged Brie"
|
||||||
|
if item.name != "Backstage passes to a TAFKAL80ETC concert"
|
||||||
|
if item.quality > 0
|
||||||
|
if item.name != "Sulfuras, Hand of Ragnaros"
|
||||||
|
item.quality = item.quality - 1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
else
|
||||||
|
item.quality = item.quality - item.quality
|
||||||
|
end
|
||||||
|
else
|
||||||
|
if item.quality < 50
|
||||||
|
item.quality = item.quality + 1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def update_sell_in(item)
|
||||||
|
if item.name != "Sulfuras, Hand of Ragnaros"
|
||||||
|
item.sell_in = item.sell_in - 1
|
||||||
|
end
|
||||||
|
check_expired_item(item)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
class Item
|
class Item
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user