Class: SlackRubyBot::App

Inherits:
Object
  • Object
show all
Includes:
Hooks::Hello, Hooks::Message
Defined in:
lib/slack-ruby-bot/app.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Hooks::Message

#message

Methods included from Hooks::Base

#included

Methods included from Hooks::Hello

#hello

Constructor Details

#initializeApp

Returns a new instance of App.



8
9
10
11
12
13
14
15
16
# File 'lib/slack-ruby-bot/app.rb', line 8

def initialize
  SlackRubyBot.configure do |config|
    config.token = ENV['SLACK_API_TOKEN'] || fail("Missing ENV['SLACK_API_TOKEN'].")
    config.aliases = ENV['SLACK_RUBY_BOT_ALIASES'].split(' ') if ENV['SLACK_RUBY_BOT_ALIASES']
  end
  Slack.configure do |config|
    config.token = SlackRubyBot.config.token
  end
end

Class Method Details

.instanceObject



22
23
24
# File 'lib/slack-ruby-bot/app.rb', line 22

def self.instance
  @instance ||= SlackRubyBot::App.new
end

Instance Method Details

#configObject



18
19
20
# File 'lib/slack-ruby-bot/app.rb', line 18

def config
  SlackRubyBot.config
end

#runObject



26
27
28
29
# File 'lib/slack-ruby-bot/app.rb', line 26

def run
  auth!
  start!
end

#stop!Object



31
32
33
# File 'lib/slack-ruby-bot/app.rb', line 31

def stop!
  client.stop
end