module Clearbit

Constants

Company
Person

Backwards compatibility

VERSION

Public Class Methods

api_key=(value) click to toggle source
# File lib/clearbit.rb, line 6
def self.api_key=(value)
  Base.key = value
end
key() click to toggle source
# File lib/clearbit.rb, line 14
def self.key
  Base.key
end
key!() click to toggle source
# File lib/clearbit.rb, line 18
def self.key!
  key || raise('Clearbit.key not set')
end
key=(value) click to toggle source
# File lib/clearbit.rb, line 10
def self.key=(value)
  Base.key = value
end