Skip to content

Instantly share code, notes, and snippets.

@sandyxu
Created August 23, 2013 09:25
Show Gist options
  • Save sandyxu/6317281 to your computer and use it in GitHub Desktop.
Save sandyxu/6317281 to your computer and use it in GitHub Desktop.
All models should be organized using the following format
# All models should be organized using the following format.
class MyModel < ActiveRecord::Base
# extends ...
# includes ..
# security (i.e. attr_accessible) ......
# relationships ....
# validations ..
# callbacks
# scopes
# additional config
# class methods
# public instance methods
# protected instance methods
# private instance methods ..
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment