Skip to content

Instantly share code, notes, and snippets.

@timurb
Created April 26, 2010 10:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timurb/379179 to your computer and use it in GitHub Desktop.
Save timurb/379179 to your computer and use it in GitHub Desktop.
было:
def concat(....)
......
output_buffer.respond_to?(:safe_concat) ? output_buffer.safe_concat(string) : concat(string)
......
end
должно быть:
def concat(....)
......
output_buffer.respond_to?(:safe_concat) ? output_buffer.safe_concat(string) : output_buffer.concat(string)
......
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment