module SalesforceChatter
Constants
- VERSION
The version of the gem
Public Class Methods
method_missing(method, *args, &block)
click to toggle source
Delegate to SalesforceChatter::Client
Calls superclass method
# File lib/salesforce-chatter.rb, line 19 def self.method_missing(method, *args, &block) return super unless new.respond_to?(method) new.send(method, *args, &block) end
new(options={})
click to toggle source
Alias for SalesforceChatter::Client.new
@return [SalesforceChatter::Client]
# File lib/salesforce-chatter.rb, line 14 def self.new(options={}) SalesforceChatter::Client.new(options) end
respond_to?(method, include_private = false)
click to toggle source
Calls superclass method
# File lib/salesforce-chatter.rb, line 24 def self.respond_to?(method, include_private = false) new.respond_to?(method, include_private) || super(method, include_private) end