Method: OldApiResource::Base.first
- Defined in:
- lib/old_api_resource/base.rb
.first(*args) ⇒ Object
A convenience wrapper for find(:first, *args). You can pass in all the same arguments to this method as you can to find(:first).
209 210 211 |
# File 'lib/old_api_resource/base.rb', line 209 def first(*args) find(:first, *args) end |