module AuPair

Constants

VERSION

Public Class Methods

authentication_disabled?() click to toggle source
# File lib/au_pair.rb, line 21
def self.authentication_disabled?
  config.authentication_disabled
end
config() click to toggle source
# File lib/au_pair.rb, line 13
def self.config
  @config || Configuration.new
end
configure() { |config| ... } click to toggle source
# File lib/au_pair.rb, line 8
def self.configure(&block)
  @config = Configuration.new
  yield(config)
end
tokens() click to toggle source
# File lib/au_pair.rb, line 17
def self.tokens
  config.tokens
end