Replace `attr_accessor` with instance variable

The `features` hash does not have to be accessed from outside the
repository class.
master
Guillaume Dott 2014-08-14 17:48:21 +02:00
parent 70c04b7ea8
commit 1d2ffcb691
1 changed files with 3 additions and 5 deletions

View File

@ -1,18 +1,16 @@
module Flop
module Repository
class Memory
attr_accessor :features
def initialize
self.features = Hash.new(false)
@features = Hash.new(false)
end
def get(name)
features[name]
@features[name]
end
def set(name, value)
features[name] = value
@features[name] = value
end
end
end