module ActionDispatch::Http::URL

def protocol

Returns 'https://' if this is an SSL request and 'http://' otherwise.
def protocol
  ssl? ? 'https://' : 'http://'
end