Created
November 12, 2010 09:07
-
-
Save madhums/673890 to your computer and use it in GitHub Desktop.
mini-find - this will save a few key strokes!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class << ActiveRecord::Base | |
alias_method :[], :find | |
end | |
@post = Post[5] | |
@post = Post[:first] | |
@post = Post[:all, :conditions => { :name => "first post" }] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment