module PhoneConnect

Constants

VERSION

Attributes

configuration[RW]

Public Class Methods

configure() { |configuration| ... } click to toggle source
# File lib/phone_connect.rb, line 9
def configure
  self.configuration ||= Configuration.new
  yield(configuration)
end
fetch(phone_number) click to toggle source
# File lib/phone_connect.rb, line 18
def fetch(phone_number)
  PhoneConnect::RealPhoneValidation.new(phone_number)
end
reset() click to toggle source
# File lib/phone_connect.rb, line 14
def reset
  @configuration = Configuration.new
end