Module: Fountain

Defined in:
lib/fountain/configuration.rb,
lib/fountain.rb,
lib/fountain/note.rb,
lib/fountain/slot.rb,
lib/fountain/user.rb,
lib/fountain/util.rb,
lib/fountain/field.rb,
lib/fountain/label.rb,
lib/fountain/slots.rb,
lib/fountain/stage.rb,
lib/fountain/funnel.rb,
lib/fountain/funnels.rb,
lib/fountain/location.rb,
lib/fountain/api/notes.rb,
lib/fountain/applicant.rb,
lib/fountain/api/labels.rb,
lib/fountain/api/stages.rb,
lib/fountain/applicants.rb,
lib/fountain/transition.rb,
lib/fountain/api/funnels.rb,
lib/fountain/gem_version.rb,
lib/fountain/api/applicants.rb,
lib/fountain/secure_document.rb,
lib/fountain/background_check.rb,
lib/fountain/api/request_helper.rb,
lib/fountain/document_signature.rb,
lib/fountain/api/available_slots.rb

Overview

Fountain configuration

Defined Under Namespace

Modules: Api, Util Classes: Applicant, Applicants, AuthenticationError, BackgroundCheck, DocumentSignature, Error, Field, Funnel, Funnels, HTTPError, InvalidMethodError, JsonParseError, Label, Location, MissingApiKeyError, NotFoundError, Note, SecureDocument, Slot, Slots, Stage, StatusError, Transition, UnexpectedHTTPError, User

Constant Summary collapse

VERSION =
'0.0.21'

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.api_tokenObject

API token for Fountain



12
13
14
# File 'lib/fountain/configuration.rb', line 12

def api_token
  @api_token
end

.host_pathObject

The path of the Fountain host



9
10
11
# File 'lib/fountain/configuration.rb', line 9

def host_path
  @host_path
end

Class Method Details

.configure {|_self| ... } ⇒ Object

Yields:

  • (_self)

Yield Parameters:

  • _self (Fountain)

    the object that the method was called on



14
15
16
# File 'lib/fountain/configuration.rb', line 14

def configure
  yield self if block_given?
end