Class: ChatBot::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/chatbot/configuration.rb

Constant Summary collapse

API_URI =
'https://api.groupme.com/v3/bots/post'

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



7
8
9
# File 'lib/chatbot/configuration.rb', line 7

def initialize
  @api_uri = API_URI
end

Instance Attribute Details

#api_keyObject

Returns the value of attribute api_key.



5
6
7
# File 'lib/chatbot/configuration.rb', line 5

def api_key
  @api_key
end

#api_uriObject

Returns the value of attribute api_uri.



5
6
7
# File 'lib/chatbot/configuration.rb', line 5

def api_uri
  @api_uri
end

#bot_idObject

Returns the value of attribute bot_id.



5
6
7
# File 'lib/chatbot/configuration.rb', line 5

def bot_id
  @bot_id
end