Method: Lce::Configuration#initialize
- Defined in:
- lib/lce.rb
#initialize ⇒ Configuration
Returns a new instance of Configuration.
48 49 50 51 52 53 54 55 56 57 |
# File 'lib/lce.rb', line 48 def initialize @environment = :staging @api_version = 1 @http_adapter = Faraday.default_adapter @raise_lce_errors = true @logger = Logger.new(STDOUT) @logger.level = Logger::DEBUG @application = 'ruby-lce' @version = Lce::VERSION end |