class Queight::RabbitMQConfig

Public Instance Methods

size() click to toggle source
# File lib/queight/rabbitmq_config.rb, line 8
def size
  query["size"].map(&:to_i).last
end
vhost() click to toggle source
# File lib/queight/rabbitmq_config.rb, line 12
def vhost
  return "/" if path.empty?

  URI.decode path[1..-1]
end