class Bitodeme::Configuration
Attributes
client_id[R]
client_secret[R]
hostname[R]
logging[R]
Public Class Methods
build()
click to toggle source
# File lib/bitodeme/configuration.rb, line 13 def self.build $bitodeme_configuration ||= instance end
new()
click to toggle source
# File lib/bitodeme/configuration.rb, line 19 def initialize @hostname = ENV['BITODEME_HOSTNAME'] @client_id = ENV['BITODEME_CLIENT_ID'] @client_secret = ENV['BITODEME_CLIENT_SECRET'] @logging = ENV['BITODEME_CLIENT_LOGGING'] end