aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-07-31 18:59:58 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-07-31 18:59:58 +0000
commit865b175765edf6138deb6f10ae3280ddea4cc7fd (patch)
tree240d292136fbd7dc82b3e3652e58ff870f9668f1 /actionpack/CHANGELOG
parentffaecb792e8f23efba513ffd8655f7832ba67b89 (diff)
downloadrails-865b175765edf6138deb6f10ae3280ddea4cc7fd.tar.gz
rails-865b175765edf6138deb6f10ae3280ddea4cc7fd.tar.bz2
rails-865b175765edf6138deb6f10ae3280ddea4cc7fd.zip
Added map.resources from the Simply Restful plugin (backwards incompatible with the plugin!) [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4637 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG6
1 files changed, 6 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 7f6134d455..40ff1a5939 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,11 @@
*SVN*
+* Added map.resources from the Simply Restful plugin [DHH]. Examples (the API has changed to use plurals!):
+
+ map.resources :messages
+ map.resources :messages, :comments
+ map.resources :messages, :new => { :preview => :post }
+
* Fixed that integration simulation of XHRs should set Accept header as well [Edward Frederick]
* TestRequest#reset_session should restore a TestSession, not a hash [Koz]