class EspressoPath::Configuration

Attributes

base_url[RW]
client_token[RW]
options[RW]
password[RW]
user_name[RW]

Public Class Methods

new() click to toggle source
# File lib/espresso_path/configuration.rb, line 6
def initialize
  @user_name = nil
  @password = nil
  @client_token = nil
  @base_url = 'https://insights-api.geopath.org'
  @options = nil
end