class Moxie::Store

Attributes

key[R]

Public Class Methods

new(key) click to toggle source
# File lib/moxie/store.rb, line 13
def initialize(key)
  @key = key
end
object(key) click to toggle source
# File lib/moxie/store.rb, line 7
def self.object(key)
  Store::Object.new(key)
end
set(key) click to toggle source
# File lib/moxie/store.rb, line 3
def self.set(key)
  Store::Set.new(key)
end