module Smartsend
Constants
- VERSION
Public Class Methods
account()
click to toggle source
# File lib/smartsend.rb, line 11 def self.account Smartsend::Account.new(api_token: @@api_token) end
api_token()
click to toggle source
# File lib/smartsend.rb, line 15 def self.api_token @@api_token end
configure(args={})
click to toggle source
# File lib/smartsend.rb, line 5 def self.configure(args={}) args.each do |k, v| class_variable_set "@@#{k}", v end end