method

rewrite_authentication

rewrite_authentication(options)
private

No documentation available.

# File actionpack/lib/action_dispatch/http/url.rb, line 99
        def rewrite_authentication(options)
          if options[:user] && options[:password]
            "#{Rack::Utils.escape(options[:user])}:#{Rack::Utils.escape(options[:password])}@"
          else
            ""
          end
        end