class Viglink::Configuration

Attributes

api_key[RW]
debug_output[RW]
secret_key[RW]

Public Class Methods

new(api_key: ENV['VIGLINK_API_KEY'], secret_key: ENV['VIGLINK_SECRET_KEY'], debug_output: false) click to toggle source
# File lib/viglink/configuration.rb, line 23
def initialize(api_key: ENV['VIGLINK_API_KEY'],
               secret_key: ENV['VIGLINK_SECRET_KEY'],
               debug_output: false)
  @api_key = api_key
  @secret_key = secret_key
  @debug_output = debug_output
end