Files
rails/actionpack/lib/action_view
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
..
2011-03-27 11:20:54 -07:00
2011-03-05 11:56:35 +01:00
2011-02-08 14:14:26 -08:00
2010-12-27 10:15:54 +01:00
2011-02-08 14:14:26 -08:00