1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00

s/ERb/ERB/g

According to the author of ERB, his eRuby implementation was originally named "ERb/ERbLight" and then renamed to "ERB" when bundled as a Ruby standard lib.
http://www2a.biglobe.ne.jp/~seki/ruby/erb.html
This commit is contained in:
Akira Matsuda 2014-10-03 15:58:43 +09:00
parent 3f2790b26b
commit 68b07f3fa6
2 changed files with 2 additions and 2 deletions

View file

@ -1141,7 +1141,7 @@ control when CDATA tags are added.
### `:erb` {#erb-filter}
Parses the filtered text with ERb, like an RHTML template. Not available if the
Parses the filtered text with ERB, like an RHTML template. Not available if the
{Haml::Options#suppress_eval `:suppress_eval`} option is set to true. Embedded
Ruby code is evaluated in the same context as the Haml template. This filter is
implemented using Tilt.

View file

@ -13,7 +13,7 @@ ensure
$stderr = the_real_stderr
end
desc "Benchmark Haml against ERb. TIMES=n sets the number of runs, default is 1000."
desc "Benchmark Haml against ERB. TIMES=n sets the number of runs, default is 1000."
task :benchmark do
sh "ruby benchmark.rb #{ENV['TIMES']}"
end