module Pixmatch

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 pixmatch::Client.new

@return {pixmatch::Client}

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

Delegate to pixmatch::Client

Calls superclass method
# File lib/pixmatch.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 pixmatch::Client

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