Skip to content

Instantly share code, notes, and snippets.

@bcardarella
Created February 29, 2012 16:35
Show Gist options
  • Save bcardarella/1942296 to your computer and use it in GitHub Desktop.
Save bcardarella/1942296 to your computer and use it in GitHub Desktop.
@user = User.new(:email => 'test@example.com', :name => 'John Wayne')
string = "hello there {{user.email}} how are you {{user.name}}"
string.gsub(/\{\{(.+?)\}\}/) do |s|
eval("@#{s}")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment