class Rexpense::Configuration

Attributes

url[RW]
user_agent[RW]
version[RW]

Public Class Methods

new() click to toggle source
# File lib/rexpense/configuration.rb, line 7
def initialize
  @url = 'https://app.rexpense.com'
  @version = 'v1'
  @user_agent = "Rexpense Ruby Client v#{Rexpense::VERSION}"
end