class Supersaas::Client::Configuration

Constants

DEFAULT_HOST

Attributes

account_name[RW]
api_key[RW]
dry_run[RW]
host[RW]
verbose[RW]

Public Class Methods

new() click to toggle source
# File lib/supersaas-api-client/client.rb, line 158
def initialize
  @account_name = ENV['SSS_API_ACCOUNT_NAME']
  @api_key = ENV['SSS_API_KEY']
  @host = DEFAULT_HOST
  @dry_run = false
  @verbose = false
end