module MobileTextAlerts

Constants

VERSION

Attributes

configuration[RW]

Public Class Methods

configure() { |configuration| ... } click to toggle source
# File lib/mobile_text_alerts.rb, line 15
def configure
  @configuration ||= Configuration.new
  yield(@configuration)
end
new() click to toggle source
# File lib/mobile_text_alerts.rb, line 10
def new
  @configuration ||= Configuration.new
  MobileTextAlerts::Client.new(@configuration.api_key)
end