Alias for UserStream::Client.new
@return [UserStream::Client]
# File lib/user_stream.rb, line 14 def self.client(options = {}) UserStream::Client.new(options) end
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
# 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.