Method: ApiResource::Base.all

Defined in:
lib/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)



199
200
201
# File 'lib/api_resource/base.rb', line 199

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