Skip to content

Instantly share code, notes, and snippets.

@benburkert
Created August 10, 2008 19:33
Show Gist options
  • Select an option

  • Save benburkert/4758 to your computer and use it in GitHub Desktop.

Select an option

Save benburkert/4758 to your computer and use it in GitHub Desktop.
class CreditCard
include DataMapper::Resource
repository(:default) do
property :id, Serial
property :month, Integer
property :year, Integer
property :digits, Integer #last 5 digits
end
repository(:merb_session) do
property :number, Integer
property :cvc, Integer
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment