Module: Fountain

Defined in:
lib/fountain/configuration.rb,
lib/fountain.rb,
lib/fountain/util.rb,
lib/fountain/stage.rb,
lib/fountain/funnel.rb,
lib/fountain/applicant.rb,
lib/fountain/applicants.rb,
lib/fountain/gem_version.rb,
lib/fountain/api/applicants.rb,
lib/fountain/background_check.rb,
lib/fountain/api/request_helper.rb,
lib/fountain/document_signature.rb

Overview

Fountain configuration

Defined Under Namespace

Modules: Api, Util Classes: Applicant, Applicants, AuthenticationError, BackgroundCheck, DocumentSignature, Error, Funnel, HTTPError, InvalidMethodError, JsonParseError, MissingApiKeyError, NotFoundError, Stage, StatusError

Constant Summary collapse

VERSION =
'0.0.4'.freeze

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.api_tokenObject

API token for Fountain



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

def api_token
  @api_token
end

.host_pathObject

The path of the Fountain host



7
8
9
# File 'lib/fountain/configuration.rb', line 7

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



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

def configure
  yield self if block_given?
end