Skip to content

Instantly share code, notes, and snippets.

@nateware
Created September 26, 2011 19:23
Show Gist options
  • Save nateware/1243131 to your computer and use it in GitHub Desktop.
Save nateware/1243131 to your computer and use it in GitHub Desktop.
Proposed syntax for mini_record
class Contact < ActiveRecord::Base
col :name, :type => String, :null => false
col :contact_type_id, :type => Integer, :null => false
col :address, :type => String, :limit => 1000
col :city, :type => String
col :state, :type => String, :limit => 40
col :zip, :type => String, :limit => 20
col :phone, :type => String, :limit => 20
col :email, :type => String, :limit => 100
end
# in Ruby 1.9 it looks even cleaner:
class Contact < ActiveRecord::Base
col :name, type: String, null: false
col :contact_type_id, type: Integer, null: false
col :address, type: String, limit: 1000
col :city, type: String
col :state, type: String, limit: 40
col :zip, type: String, limit: 20
col :phone, type: String, limit: 20
col :email, type: String, limit: 100
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment