Skip to content

Instantly share code, notes, and snippets.

@neaf
Created May 3, 2010 17:49
Show Gist options
  • Save neaf/388366 to your computer and use it in GitHub Desktop.
Save neaf/388366 to your computer and use it in GitHub Desktop.
Compito.helpers do
def absolute_url_for(*names)
path = url_for(*names)
scheme = request.scheme
if (scheme == 'http' && request.port == 80 ||
scheme == 'https' && request.port == 443)
port = ""
else
port = ":#{request.port}"
end
"#{scheme}://#{request.host}#{port}#{request.script_name}#{path}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment