mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-15 22:41:30 +00:00
Assignment of operators
This commit is contained in:
parent
319ef5155f
commit
ae84163e48
@ -10,19 +10,17 @@ class ItemProcessor
|
|||||||
def update_item_quality
|
def update_item_quality
|
||||||
if (item.name != 'Aged Brie') && (item.name != 'Backstage passes to a TAFKAL80ETC concert')
|
if (item.name != 'Aged Brie') && (item.name != 'Backstage passes to a TAFKAL80ETC concert')
|
||||||
if item.quality > 0
|
if item.quality > 0
|
||||||
if item.name != 'Sulfuras, Hand of Ragnaros'
|
item.quality -= 1 if item.name != 'Sulfuras, Hand of Ragnaros'
|
||||||
item.quality = item.quality - 1
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
if item.quality < 50
|
if item.quality < 50
|
||||||
item.quality = item.quality + 1
|
item.quality += 1
|
||||||
if item.name == 'Backstage passes to a TAFKAL80ETC concert'
|
if item.name == 'Backstage passes to a TAFKAL80ETC concert'
|
||||||
if item.sell_in < 11
|
if item.sell_in < 11
|
||||||
item.quality = item.quality + 1 if item.quality < 50
|
item.quality += 1 if item.quality < 50
|
||||||
end
|
end
|
||||||
if item.sell_in < 6
|
if item.sell_in < 6
|
||||||
item.quality = item.quality + 1 if item.quality < 50
|
item.quality += 1 if item.quality < 50
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -32,15 +30,13 @@ class ItemProcessor
|
|||||||
if item.name != 'Aged Brie'
|
if item.name != 'Aged Brie'
|
||||||
if item.name != 'Backstage passes to a TAFKAL80ETC concert'
|
if item.name != 'Backstage passes to a TAFKAL80ETC concert'
|
||||||
if item.quality > 0
|
if item.quality > 0
|
||||||
if item.name != 'Sulfuras, Hand of Ragnaros'
|
item.quality -= 1 if item.name != 'Sulfuras, Hand of Ragnaros'
|
||||||
item.quality = item.quality - 1
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
item.quality = item.quality - item.quality
|
item.quality = item.quality - item.quality
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
item.quality = item.quality + 1 if item.quality < 50
|
item.quality += 1 if item.quality < 50
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user