aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2007-02-25 20:13:19 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2007-02-25 20:13:19 +0000
commit784298008bf25c901564929d319eb631eb1a5639 (patch)
tree82020764784e62012d54d7da4bbc2b04f1858524 /actionpack/CHANGELOG
parentb203b9b55b0dc35da057cbb9b23277f60bd5260b (diff)
downloadrails-784298008bf25c901564929d319eb631eb1a5639.tar.gz
rails-784298008bf25c901564929d319eb631eb1a5639.tar.bz2
rails-784298008bf25c901564929d319eb631eb1a5639.zip
Allow routing requirements on map.resource(s) (closes #7633) [quixoten]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6232 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG4
1 files changed, 4 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 396fa98a76..1767443f12 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,9 @@
*SVN*
+* Allow routing requirements on map.resource(s) #7633 [quixoten]. Example:
+
+ map.resources :network_interfaces, :requirements => { :id => /^\d+\.\d+\.\d+\.\d+$/ }
+
* Cookie session store: empty and unchanged sessions don't write a cookie. [Jeremy Kemper]
* Added helper(:all) as a way to include all helpers from app/helpers/**/*.rb in ApplicationController [DHH]