UserStream

Constants

VERSION

Public Class Methods

client(options = {}) click to toggle source

Alias for UserStream::Client.new

@return [UserStream::Client]

# File lib/user_stream.rb, line 14
def self.client(options = {})
  UserStream::Client.new(options)
end
method_missing(method_name, *args, &block) click to toggle source

Delegate to {UserStream::Client}

# File lib/user_stream.rb, line 19
def self.method_missing(method_name, *args, &block)
  return super unless client.respond_to?(method_name)
  client.send(method_name, *args, &block)
end
respond_to?(method_name) click to toggle source

Delegate to {UserStream::Client}

# File lib/user_stream.rb, line 25
def self.respond_to?(method_name)
  return client.respond_to?(method_name) || super
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.