Skip to content

Instantly share code, notes, and snippets.

@paul
Created July 6, 2010 23:11
Show Gist options
  • Save paul/466070 to your computer and use it in GitHub Desktop.
Save paul/466070 to your computer and use it in GitHub Desktop.
class MyResource
include Spinal::Resource
attribute :foo, String
attribute :bar, Integer
validates_presence_of :foo
def self.get(foo)
MyModel.find(foo)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment