module Tickspot

Constants

VERSION

Attributes

company[RW]
email[RW]
password[RW]

Public Class Methods

configure() { |self| ... } click to toggle source

config/initializers/tickspot.rb (for instance)

Tickspot.configure do |config|

config.company = 'acme'
config.email = 'wilie@acme.com'
config.password = 'secret'

end

elsewhere

client = Tickspot::Client.new

# File lib/tickspot.rb, line 17
def configure
  yield self
  true
end