class FingerbankClient

Constants

VERSION

Public Class Methods

new(options = {}) click to toggle source
Calls superclass method Fingerbank::new
# File lib/fingerbank_client.rb, line 20
def initialize(options = {})
  # we let the user override the key from the environment
  options[:key] = options[:key] || ENV['fingerbank_key']
  super(options) 
end