aboutsummaryrefslogtreecommitdiffstats
path: root/activeresource/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2007-04-27 20:54:53 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2007-04-27 20:54:53 +0000
commit1d5c34c2c27370356e8cd1ef478111802b6a5af4 (patch)
treea24e73ce006a32b79b80fc09ed74490dffe8a13d /activeresource/CHANGELOG
parent8326a15784550f8a909e140f828dc0b1c83d617c (diff)
downloadrails-1d5c34c2c27370356e8cd1ef478111802b6a5af4.tar.gz
rails-1d5c34c2c27370356e8cd1ef478111802b6a5af4.tar.bz2
rails-1d5c34c2c27370356e8cd1ef478111802b6a5af4.zip
Added find-by-path options to ActiveResource::Base.find [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6595 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activeresource/CHANGELOG')
-rw-r--r--activeresource/CHANGELOG6
1 files changed, 6 insertions, 0 deletions
diff --git a/activeresource/CHANGELOG b/activeresource/CHANGELOG
index e740af59be..403933f7aa 100644
--- a/activeresource/CHANGELOG
+++ b/activeresource/CHANGELOG
@@ -1,5 +1,11 @@
*SVN*
+* Added find-by-path options to ActiveResource::Base.find [DHH]. Examples:
+
+ employees = Person.find(:all, :from => "/companies/1/people.xml") # => GET /companies/1/people.xml
+ manager = Person.find("/companies/1/manager.xml") # => GET /companies/1/manager.xml
+
+
* Added support for using classes from within a single nested module [DHH]. Example:
module Highrise