1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/lib
Xavier Noria b2d94322e6 fixes a couple of regexps, the suite showed warnings about them
A couple of things worth mentioning here:

 - "{" is a metacharacter, should be escaped
   if it is meant to match a "{". The code
   worked, though, because the regexp engine
   is tolerant to this, but issued warnings.

 - gsub accepts a string as first argument.
   That's the best idiom to use when your
   pattern has no metacharacters, since gsub
   interprets the string as an exact substring
   to look for, rather than a regexp. The
   benefit is that your pattern is crystal
   clear and needs no backslashes.
2011-03-27 20:45:23 +02:00
..
abstract_controller Fix filter :only and :except with implicit actions 2011-03-23 23:32:44 +00:00
action_controller Improve testing of cookies in functional tests: 2011-03-06 12:49:44 +00:00
action_dispatch correction to the outputted controller name in the diagnostics error template, test included 2011-03-24 19:43:48 -03:00
action_pack Update the version.rb files to include a PRE part 2010-11-16 17:19:46 -08:00
action_view fixes a couple of regexps, the suite showed warnings about them 2011-03-27 20:45:23 +02:00
abstract_controller.rb Refactor ActionMailer to not use hide_actions 2010-09-03 22:59:11 +02:00
action_controller.rb Move uri parser to AS as URI.parser method to reuse it in AP and ARes. 2010-09-28 11:38:35 +08:00
action_dispatch.rb We're in 2011, let's update our license 2011-02-22 18:24:20 -02:00
action_pack.rb We're in 2011, let's update our license 2011-02-22 18:24:20 -02:00
action_view.rb We're in 2011, let's update our license 2011-02-22 18:24:20 -02:00