class Rabbithole::Connection::Settings

Public Instance Methods

to_ary() click to toggle source

Fix rspec integration error

# File lib/rabbithole/connection.rb, line 59
def to_ary
  to_a
end
to_url() click to toggle source
# File lib/rabbithole/connection.rb, line 54
def to_url
  "amqp://#{user}:#{password}@#{host}:#{port}/#{vhost.gsub('/', '%2F')}"
end