Skip to content

Instantly share code, notes, and snippets.

@dmitryame
Created April 5, 2011 21:56
Show Gist options
  • Save dmitryame/904664 to your computer and use it in GitHub Desktop.
Save dmitryame/904664 to your computer and use it in GitHub Desktop.
this will override the html_safe? implementation of string
class Object
def html_safe?
true
end
end
class String
def html_safe?
true
end
end
@dmitryame
Copy link
Author

Why would one want to do such a horrible thing? :(

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment