class Rounders::Stores::Store

Public Class Methods

inherited(klass) click to toggle source
Calls superclass method
# File lib/rounders/stores/store.rb, line 20
def inherited(klass)
  super
  Rounders.stores[klass.symbol] = klass
end

Public Instance Methods

[](key) click to toggle source
# File lib/rounders/stores/store.rb, line 7
def [](key)
  data[key]
end
[]=(key, value) click to toggle source
# File lib/rounders/stores/store.rb, line 11
def []=(key, value)
  data[key] = value
end
data() click to toggle source
# File lib/rounders/stores/store.rb, line 15
def data
  raise 'Called abstract method: data'
end