class Exponea::Configuration

Attributes

api_secret[RW]
project[RW]
token[RW]

Public Class Methods

new() click to toggle source
# File lib/exponea/configuration.rb, line 5
def initialize
  @project = ENV['EXPONEA_PROJECT']
  @token = ENV['EXPONEA_TOKEN']
  @api_secret = ENV['EXPONEA_API_SECRET']
end