mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
4cbb9db0a5
* Additionally, instead of doing concat("</form>".html_safe), you can do safe_concat("</form>"), which will skip both the flag set, and the flag check. * For the first pass, I converted virtually all #html_safe!s to #html_safe, and the tests pass. A further optimization would be to try to use #safe_concat as much as possible, reducing the performance impact if we know up front that a String is safe.
9 lines
No EOL
165 B
Ruby
9 lines
No EOL
165 B
Ruby
module ActionView #:nodoc:
|
|
module Helpers #:nodoc:
|
|
module RawOutputHelper
|
|
def raw(stringish)
|
|
stringish.to_s.html_safe
|
|
end
|
|
end
|
|
end
|
|
end |