first(*args)
A convenience wrapper for find(:first, *args). You can pass in all the same arguments to this method as you can to find(:first).
# File activeresource/lib/active_resource/base.rb, line 825 def first(*args) find(:first, *args) end