Module: StormMQ

Defined in:
lib/stormmq/utils.rb,
lib/stormmq/url.rb,
lib/stormmq/amqp.rb,
lib/stormmq/rest.rb,
lib/stormmq/errors.rb,
lib/stormmq/version.rb,
lib/stormmq/application.rb,
lib/stormmq/secret_keys.rb

Overview

– Copyright © 2010, Tony Byrne & StormMQ Ltd. All rights reserved.

Please refer to the LICENSE file that accompanies this source for terms of use and redistribution. ++

Defined Under Namespace

Modules: AMQPClient, Error, Utils Classes: Application, Rest, SecretKeys, URL

Constant Summary collapse

SCHEMES_DEFAULT_PORTS =
{
  'http'  => 80,
  'https' => 443
}
API_HOST =
ENV['STORMMQ_HOST']        || "api.stormmq.com"
API =
ENV['STORMMQ_API']         || "api"
API_VERSION =
ENV['STORMMQ_API_VERSION'] || "2009-01-01"
COMPANIES_PATH =
'/companies/'
CLUSTERS_PATH =
'/clusters'
APIS_PATH =
'/'
VERSION =
'0.0.7'
SECRET_KEYS_SEARCH_PATH =
[
  File.join(ENV['HOME'], '.stormmq'),
  File.join('/', 'etc', 'stormmq')
]
SECRET_KEYS_FILENAME =
'secret-keys.json'