mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-16 06:51:27 +00:00
Extacted class
This commit is contained in:
parent
154f9dc7ad
commit
319ef5155f
@ -1,5 +1,7 @@
|
|||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
require File.join(File.dirname(__FILE__), 'item_processor')
|
||||||
|
|
||||||
class GildedRose
|
class GildedRose
|
||||||
def initialize(items)
|
def initialize(items)
|
||||||
@items = items
|
@items = items
|
||||||
@ -7,45 +9,7 @@ class GildedRose
|
|||||||
|
|
||||||
def update_quality
|
def update_quality
|
||||||
@items.each do |item|
|
@items.each do |item|
|
||||||
update_item_quality(item)
|
ItemProcessor.new(item).update_item_quality
|
||||||
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
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
47
ruby/item_processor.rb
Normal file
47
ruby/item_processor.rb
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
class ItemProcessor
|
||||||
|
attr_accessor :item
|
||||||
|
|
||||||
|
def initialize(item)
|
||||||
|
@item = item
|
||||||
|
end
|
||||||
|
|
||||||
|
def update_item_quality
|
||||||
|
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
|
||||||
Loading…
Reference in New Issue
Block a user