Skip to content

Instantly share code, notes, and snippets.

@solnic
Created May 27, 2010 10:53
Show Gist options
  • Save solnic/415681 to your computer and use it in GitHub Desktop.
Save solnic/415681 to your computer and use it in GitHub Desktop.
require 'dm-core'
DataMapper::Property::String.required true
class User
include DataMapper::Resource
property :id, Serial
property :name, String
end
p DataMapper::Property::String.required # true
p User.properties[:name].required? # true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment