module Slack

Attributes

token[RW]

Public Class Methods

configure() { |configuration| ... } click to toggle source
# File lib/slack.rb, line 12
def configure(&block)
  yield configuration
end

Private Class Methods

client() click to toggle source
# File lib/slack.rb, line 18
def client
  @client = Slack::Client.new(token)
end