aboutsummaryrefslogtreecommitdiffstats
path: root/activeresource/lib
diff options
context:
space:
mode:
authortaryn <teast@globalpersonals.co.uk>2009-08-21 09:45:29 +0100
committerJoshua Peek <josh@joshpeek.com>2009-08-21 14:49:59 -0500
commitce61a6bd551a96205892a125c8835c4bc69c4fad (patch)
tree853cf3ffa9676d3535e49d2cd06b04033423c32b /activeresource/lib
parent8bc3a147270546325458da65ae6f5e83dd260aeb (diff)
downloadrails-ce61a6bd551a96205892a125c8835c4bc69c4fad.tar.gz
rails-ce61a6bd551a96205892a125c8835c4bc69c4fad.tar.bz2
rails-ce61a6bd551a96205892a125c8835c4bc69c4fad.zip
Added first/last/all aliases for equivalent find scopes
Just a copy from Active Record (with tests). Each is a warpper function for the equivalent scoped call to find eg first is a wrapper for find(:first) Signed-off-by: Joshua Peek <josh@joshpeek.com>
Diffstat (limited to 'activeresource/lib')
-rw-r--r--activeresource/lib/active_resource/base.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/activeresource/lib/active_resource/base.rb b/activeresource/lib/active_resource/base.rb
index f27febb7ef..e5b8589fb3 100644
--- a/activeresource/lib/active_resource/base.rb
+++ b/activeresource/lib/active_resource/base.rb
@@ -611,6 +611,28 @@ module ActiveResource
end
end
+
+ # A convenience wrapper for <tt>find(:first, *args)</tt>. You can pass
+ # in all the same arguments to this method as you can to
+ # <tt>find(:first)</tt>.
+ def first(*args)
+ find(:first, *args)
+ end
+
+ # A convenience wrapper for <tt>find(:last, *args)</tt>. You can pass
+ # in all the same arguments to this method as you can to
+ # <tt>find(:last)</tt>.
+ def last(*args)
+ find(:last, *args)
+ end
+
+ # This is an alias for find(:all). You can pass in all the same
+ # arguments to this method as you can to <tt>find(:all)</tt>
+ def all(*args)
+ find(:all, *args)
+ end
+
+
# Deletes the resources with the ID in the +id+ parameter.
#
# ==== Options