Sha256: df4bc3e7233356d07f54e2120b566f54054f8a50b2b293e6185dc0814d243e92

Contents?: true

Size: 454 Bytes

Versions: 3

Compression:

Stored size: 454 Bytes

Contents

require 'reshape/version'
require 'reshape/configuration'
require 'reshape/client'
require 'reshape/error'

module Reshape
  extend Configuration
  class << self
    # Alias for Reshape::Client.new
    #
    # @return [Reshape::Client]
    def new(options={})
      Reshape::Client.new(options)
    end

    def respond_to?(method, include_private=false)
      new.respond_to?(method, include_private) || super(method, include_private)
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
reshape-0.2 lib/reshape.rb
reshape-0.1.1 lib/reshape.rb
reshape-0.1 lib/reshape.rb