module SlackMsgr

Main module housing all classes, modules and methods for SlackMsgr

Constants

GITHUB_REPO
SLACK_URL
VERSION

Public Class Methods

chat(method, opts = {}) click to toggle source
# File lib/slack_msgr.rb, line 17
def chat(method, opts = {})
  Chat.call(method, opts)
end
configuration() click to toggle source
# File lib/slack_msgr.rb, line 8
def configuration
  @configuration ||= Configuration.new
end
configure() { |configuration| ... } click to toggle source
# File lib/slack_msgr.rb, line 12
def configure
  yield(configuration)
  nil
end
conversations(method, **opts) click to toggle source
# File lib/slack_msgr.rb, line 25
def conversations(method, **opts)
  Conversations.call(method, opts)
end
users(*methods, **opts) click to toggle source
# File lib/slack_msgr.rb, line 21
def users(*methods, **opts)
  Users.call(methods, opts)
end