Skip to content

Instantly share code, notes, and snippets.

@aruprakshit
Created February 8, 2015 09:09
Show Gist options
  • Save aruprakshit/3e30850917be548616f4 to your computer and use it in GitHub Desktop.
Save aruprakshit/3e30850917be548616f4 to your computer and use it in GitHub Desktop.
def erbize_document
file_content = File.read(path_to_erb)
File.open(path_to_erb, 'w+') do |f|
f.write file_content.gsub(/&lt;%/, '<%').gsub(/%&gt;/, '%>')
end
end
@aruprakshit
Copy link
Author

>> "&lt;%abc%&gt; &lt;%dev%&gt;".gsub(/&lt;%(.+?)%&gt;/, '<%\1%>')

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