Class: ImmosquareSlack::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/immosquare-slack/configuration.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



6
7
8
9
10
# File 'lib/immosquare-slack/configuration.rb', line 6

def initialize
  @slack_api_token_bot = nil
  @default_channel     = nil
  @default_bot_name    = nil
end

Instance Attribute Details

#default_bot_nameObject

Returns the value of attribute default_bot_name.



4
5
6
# File 'lib/immosquare-slack/configuration.rb', line 4

def default_bot_name
  @default_bot_name
end

#default_channelObject

Returns the value of attribute default_channel.



4
5
6
# File 'lib/immosquare-slack/configuration.rb', line 4

def default_channel
  @default_channel
end

#slack_api_token_botObject

Returns the value of attribute slack_api_token_bot.



4
5
6
# File 'lib/immosquare-slack/configuration.rb', line 4

def slack_api_token_bot
  @slack_api_token_bot
end