module Muve::Store::Formatter

Public Instance Methods

convert_from_storeable_object(storeable, klass=nil) click to toggle source
# File lib/muve/store.rb, line 24
def convert_from_storeable_object(storeable, klass=nil)
  raise IncompleteImplementation, "convertor from storeable needed"
end
convert_to_storeable_object(resource) click to toggle source
# File lib/muve/store.rb, line 20
def convert_to_storeable_object(resource)
  raise IncompleteImplementation, "convertor to storeable needed"
end