More rubyish finders
I just came across this little plugin which seems to make the writing of ActiveRecord finders much more rubyesque.
query = User.find do
name = persons_name?
endDefinitely seems nicer then:
User.find(:conditions=>["name=?",persons_name])