module Smscru

Constants

VERSION

Attributes

config[R]

Public Class Methods

client() click to toggle source
# File lib/smscru.rb, line 20
def client
  @client ||= Client.new
end
configure(options={}) { |config| ... } click to toggle source
# File lib/smscru.rb, line 14
def configure(options={}, &block)
  @config = Configuration.new
  @config.update(options)
  yield @config if block_given?
end