mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Ruby 1.9 compat: only eval with block.binding in 1.9, uses more memory than eval with block
This commit is contained in:
@@ -110,12 +110,18 @@ module ActionView
|
||||
private
|
||||
BLOCK_CALLED_FROM_ERB = 'defined? __in_erb_template'
|
||||
|
||||
# Check whether we're called from an erb template.
|
||||
# We'd return a string in any other case, but erb <%= ... %>
|
||||
# can't take an <% end %> later on, so we have to use <% ... %>
|
||||
# and implicitly concat.
|
||||
def block_called_from_erb?(block)
|
||||
block && eval(BLOCK_CALLED_FROM_ERB, block.binding)
|
||||
if RUBY_VERSION < '1.9.0'
|
||||
# Check whether we're called from an erb template.
|
||||
# We'd return a string in any other case, but erb <%= ... %>
|
||||
# can't take an <% end %> later on, so we have to use <% ... %>
|
||||
# and implicitly concat.
|
||||
def block_called_from_erb?(block)
|
||||
block && eval(BLOCK_CALLED_FROM_ERB, block)
|
||||
end
|
||||
else
|
||||
def block_called_from_erb?(block)
|
||||
block && eval(BLOCK_CALLED_FROM_ERB, block.binding)
|
||||
end
|
||||
end
|
||||
|
||||
def content_tag_string(name, content, options, escape = true)
|
||||
|
||||
Reference in New Issue
Block a user