Class: Config

Inherits:
Object
  • Object
show all
Defined in:
lib/paperplane/config.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfig

Returns a new instance of Config.



7
8
9
10
# File 'lib/paperplane/config.rb', line 7

def initialize
  @api_key = ''
  @logger = Logger.new(STDOUT)
end

Instance Attribute Details

#api_keyObject

Returns the value of attribute api_key.



5
6
7
# File 'lib/paperplane/config.rb', line 5

def api_key
  @api_key
end

#loggerObject

Returns the value of attribute logger.



5
6
7
# File 'lib/paperplane/config.rb', line 5

def logger
  @logger
end