-
Notifications
You must be signed in to change notification settings - Fork 0
/
gilded_rose.rb
52 lines (48 loc) · 1.56 KB
/
gilded_rose.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# frozen_string_literal: true
def update_quality(items)
items.each do |item|
if item.name != 'Aged Brie' && item.name != 'Backstage passes to a TAFKAL80ETC concert'
if item.quality > 0
item.quality -= 1 if item.name != 'Sulfuras, Hand of Ragnaros'
end
else
if item.quality < 50
item.quality += 1
if item.name == 'Backstage passes to a TAFKAL80ETC concert'
if item.sell_in < 11
item.quality += 1 if item.quality < 50
end
if item.sell_in < 6
item.quality += 1 if item.quality < 50
end
end
end
end
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
item.quality -= 1 if item.name != 'Sulfuras, Hand of Ragnaros'
end
else
item.quality = item.quality - item.quality
end
else
item.quality += 1 if item.quality < 50
end
end
end
end
# DO NOT CHANGE THINGS BELOW -----------------------------------------
Item = Struct.new(:name, :sell_in, :quality)
# We use the setup in the spec rather than the following for testing.
#
# Items = [
# Item.new("+5 Dexterity Vest", 10, 20),
# Item.new("Aged Brie", 2, 0),
# Item.new("Elixir of the Mongoose", 5, 7),
# Item.new("Sulfuras, Hand of Ragnaros", 0, 80),
# Item.new("Backstage passes to a TAFKAL80ETC concert", 15, 20),
# Item.new("Conjured Mana Cake", 3, 6),
# ]