GildedRose-Refactoring-Kata/ruby/gilded_rose.rb
2022-10-10 16:20:32 +01:00

66 lines
1.6 KiB
Ruby

# frozen_string_literal: true
class GildedRose
def initialize(items)
@items = items
end
def update_quality
@items.each do |item|
update_item_quality(item)
end
end
def update_item_quality(item)
if (item.name != 'Aged Brie') && (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
if item.quality < 50
item.quality = item.quality + 1
if item.name == 'Backstage passes to a TAFKAL80ETC concert'
if item.sell_in < 11
item.quality = item.quality + 1 if item.quality < 50
end
if item.sell_in < 6
item.quality = item.quality + 1 if item.quality < 50
end
end
end
end
item.sell_in = item.sell_in - 1 if item.name != 'Sulfuras, Hand of Ragnaros'
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
item.quality = item.quality + 1 if item.quality < 50
end
end
end
end
class Item
attr_accessor :name, :sell_in, :quality
def initialize(name, sell_in, quality)
@name = name
@sell_in = sell_in
@quality = quality
end
def to_s
"#{@name}, #{@sell_in}, #{@quality}"
end
end