module Skittles

Adapted from the Ruby Twitter gem. @see github.com/jnunemaker/twitter

Adapted from the Ruby Twitter gem. @see github.com/jnunemaker/twitter

Adapted from the Ruby Twitter gem. @see github.com/jnunemaker/twitter

Adapted from the Ruby Twitter gem. @see github.com/jnunemaker/twitter

Constants

VERSION

Public Class Methods

client(options = {}) click to toggle source

Alias for Skittles::Client.new

@return {Skittles::Client}

# File lib/skittles.rb, line 16
def self.client(options = {})
        Skittles::Client.new(options)
end
method_missing(method, *args, &block) click to toggle source

Delegate to Skittles::Client

Calls superclass method
# File lib/skittles.rb, line 21
def self.method_missing(method, *args, &block)
        return super unless client.respond_to?(method)
        client.send(method, *args, &block)
end
respond_to?(method) click to toggle source

Delegate to Skittles::Client

Calls superclass method
# File lib/skittles.rb, line 27
def self.respond_to?(method)
        return client.respond_to?(method) || super
end