Method: Qpid::Proton::URL#to_s
- Defined in:
- lib/core/url.rb
#to_s ⇒ Object
63 64 65 |
# File 'lib/core/url.rb', line 63 def to_s "#{@scheme}://#{@username.nil? ? '' : @username}#{@password.nil? ? '' : '@' + @password + ':'}#{@host}:#{@port}/#{@path}" end |