class Rounders::Stores::YAML

Public Instance Methods

[](key) click to toggle source
Calls superclass method
# File lib/rounders/stores/yaml.rb, line 9
def [](key)
  data.transaction do
    super
  end
end
[]=(key, value) click to toggle source
Calls superclass method
# File lib/rounders/stores/yaml.rb, line 15
def []=(key, value)
  data.transaction do
    super
  end
end
data() click to toggle source
# File lib/rounders/stores/yaml.rb, line 21
def data
  @data ||= ::YAML::Store.new(config.file)
end