aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/routing/routing_ext.rb
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2008-01-17 22:45:54 +0000
committerMichael Koziarski <michael@koziarski.com>2008-01-17 22:45:54 +0000
commit3845de022b080642e87308471376911165506133 (patch)
treea31e006ca82831f725e0a782e99ab52f911e8f6e /actionpack/lib/action_controller/routing/routing_ext.rb
parent3b9bcf13f9589423947a7d9598545e3ce8c3fb44 (diff)
downloadrails-3845de022b080642e87308471376911165506133.tar.gz
rails-3845de022b080642e87308471376911165506133.tar.bz2
rails-3845de022b080642e87308471376911165506133.zip
Restructure routing into several smaller files. References #10835 [oleganza]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8652 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_controller/routing/routing_ext.rb')
-rw-r--r--actionpack/lib/action_controller/routing/routing_ext.rb46
1 files changed, 46 insertions, 0 deletions
diff --git a/actionpack/lib/action_controller/routing/routing_ext.rb b/actionpack/lib/action_controller/routing/routing_ext.rb
new file mode 100644
index 0000000000..2ad20ee699
--- /dev/null
+++ b/actionpack/lib/action_controller/routing/routing_ext.rb
@@ -0,0 +1,46 @@
+
+class Object
+ def to_param
+ to_s
+ end
+end
+
+class TrueClass
+ def to_param
+ self
+ end
+end
+
+class FalseClass
+ def to_param
+ self
+ end
+end
+
+class NilClass
+ def to_param
+ self
+ end
+end
+
+class Regexp #:nodoc:
+ def number_of_captures
+ Regexp.new("|#{source}").match('').captures.length
+ end
+
+ class << self
+ def optionalize(pattern)
+ case unoptionalize(pattern)
+ when /\A(.|\(.*\))\Z/ then "#{pattern}?"
+ else "(?:#{pattern})?"
+ end
+ end
+
+ def unoptionalize(pattern)
+ [/\A\(\?:(.*)\)\?\Z/, /\A(.|\(.*\))\?\Z/].each do |regexp|
+ return $1 if regexp =~ pattern
+ end
+ return pattern
+ end
+ end
+end