class Promotexter::Base
base class
Constants
- API_HOST
Public Instance Methods
api_key()
click to toggle source
# File lib/promotexter/base.rb, line 6 def api_key @api_key ||= Promotexter.configuration.api_key end
api_secret()
click to toggle source
# File lib/promotexter/base.rb, line 10 def api_secret @api_secret ||= Promotexter.configuration.api_secret end
sender_id()
click to toggle source
# File lib/promotexter/base.rb, line 14 def sender_id @sender_id ||= Promotexter.configuration.sender_id end
uri_params()
click to toggle source
# File lib/promotexter/base.rb, line 18 def uri_params @uri_params ||= {} end
Private Instance Methods
reset_uri_params()
click to toggle source
# File lib/promotexter/base.rb, line 24 def reset_uri_params uri_params = {} end