class Superfaktura::Configuration

Attributes

email[RW]
sandbox[RW]
token[RW]

Public Class Methods

new() click to toggle source
# File lib/superfaktura/configuration.rb, line 5
def initialize
  @email = ENV['SUPERFAKTURA_EMAIL']
  @token = ENV['SUPERFAKTURA_TOKEN']
  @sandbox = ENV['SUPERFAKTURA_SANDBOX'] == 'true' ? true : false
end