Method: OldApiResource::Base.all

Defined in:
lib/old_api_resource/base.rb

.all(*args) ⇒ Object

This is an alias for find(:all). You can pass in all the same arguments to this method as you can to find(:all)



222
223
224
# File 'lib/old_api_resource/base.rb', line 222

def all(*args)
  find(:all, *args)
end