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/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
..
helpers Fix alias_method, add test 2011-03-27 11:20:54 -07:00
locale Action Pack typos. 2011-03-05 11:56:35 +01:00
renderer Accept String value for render_partial :as option 2011-02-01 13:01:54 -02:00
template fixes a couple of regexps, the suite showed warnings about them 2011-03-27 20:45:23 +02:00
testing [action_view] added custom patterns to template resolver 2011-03-20 07:01:46 +08:00
base.rb Merge branch 'master' of git://github.com/lifo/docrails 2010-12-29 23:46:03 +01:00
context.rb
helpers.rb Removed Array#safe_join in AS core_ext and moved it to a view helper with the same same. This also changes how safe_join works, if items or the separator are not html_safe they are html_escape'd, a html_safe string is always returned. 2011-02-10 16:51:30 +01:00
log_subscriber.rb
lookup_context.rb Use Mime::Type references. 2011-02-08 14:14:26 -08:00
partials.rb Accept String value for render_partial :as option 2011-02-01 13:01:54 -02:00
path_set.rb Clean up PathSet. 2010-12-27 10:15:54 +01:00
railtie.rb Bring back config.action_view.cache_template_loading [#5847 state:resolved] 2010-12-16 22:24:48 +01:00
rendering.rb SReorganize autoloads slightly and move two files to lib/action_view root. 2010-10-14 09:32:53 +02:00
template.rb Use Mime::Type references. 2011-02-08 14:14:26 -08:00
test_case.rb test/unit in ruby trunk adds a new instance variable. YAY! 2011-03-08 14:09:44 -08:00