Skip to content

Instantly share code, notes, and snippets.

@mnelson
Created November 4, 2011 01:44
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 mnelson/1338476 to your computer and use it in GitHub Desktop.
Save mnelson/1338476 to your computer and use it in GitHub Desktop.
module TemplateHelper
def url_for(*args)
options = args.extract_options!
return super unless options.present?
handle = options.delete(:handlebars)
url = super(*(args.push(options)))
handle ? url.gsub(/%7B%7B(.+)%7D%7D/){|m| "{{#{$1}}}"} : url
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment