module Outpost::Model::ClassMethods

Public Instance Methods

outpost_model(options={}) click to toggle source
# File lib/outpost/model.rb, line 17
def outpost_model(options={})
  include Methods, Identifier, Routing, Naming, Serializer

  # Convenience for setting options on the class.
  options.each do |option, value|
    send("#{option}=", value)
  end
end