mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-16 06:51:27 +00:00
6 lines
96 B
Ruby
6 lines
96 B
Ruby
require_relative 'normal_item'
|
|
|
|
class SulfuraItem < NormalItem
|
|
def spend_day_in_shop; end
|
|
end
|