class Store::DataMapper

Public Instance Methods

bulk_find(reference) click to toggle source
# File lib/store/data_mapper.rb, line 23
def bulk_find(reference)
  raise NotImplementedError
end
delete(reference) click to toggle source
# File lib/store/data_mapper.rb, line 11
def delete(reference)
  raise NotImplementedError
end
insert(data) click to toggle source
# File lib/store/data_mapper.rb, line 3
def insert(data)
  raise NotImplementedError
end
select(query) click to toggle source
# File lib/store/data_mapper.rb, line 15
def select(query)
  raise NotImplementedError
end
single_find(reference) click to toggle source
# File lib/store/data_mapper.rb, line 19
def single_find(reference)
  raise NotImplementedError
end
update(reference, data) click to toggle source
# File lib/store/data_mapper.rb, line 7
def update(reference, data)
  raise NotImplementedError
end