module TwilioLookups

Constants

VERSION

Public Class Methods

configure() { |configuration| ... } click to toggle source

Pre-configure with account SID and auth token so that you don't need to pass them to various initializers each time.

   # File lib/twilio-lookups.rb
30 def self.configure(&block)
31   yield configuration
32 end

Private Class Methods

configuration() click to toggle source

Returns an existing or instantiates a new configuration object.

   # File lib/twilio-lookups.rb
36 def self.configuration
37   @configuration ||= Util::Configuration.new
38 end