module Slack
Constants
- Attachment
- AttachmentField
- VERSION
Public Class Methods
client()
click to toggle source
API client based on configured options {Configurable}
@return [Slack::Client] API wrapper
# File lib/slack.rb, line 12 def client @client = Slack::Client.new(options) unless defined?(@client) && @client.same_options?(options) @client end
respond_to_missing?(method_name, include_private=false)
click to toggle source
see: robots.thoughtbot.com/always-define-respond-to-missing-when-overriding @private
# File lib/slack.rb, line 19 def respond_to_missing?(method_name, include_private=false) client.respond_to?(method_name, include_private) end
Private Class Methods
method_missing(method_name, *args, &block)
click to toggle source
Calls superclass method
# File lib/slack.rb, line 25 def method_missing(method_name, *args, &block) return super unless client.respond_to?(method_name) client.send(method_name, *args, &block) end