module Gems

Constants

VERSION

Public Class Methods

method_missing(method, *args, &block) click to toggle source

Delegate to Gems::Client

Calls superclass method
# File lib/gems.rb, line 15
def method_missing(method, *args, &block)
  return super unless new.respond_to?(method)
  new.send(method, *args, &block)
end
new(options = {}) click to toggle source

Alias for Gems::Client.new

@return [Gems::Client]

# File lib/gems.rb, line 10
def new(options = {})
  Gems::Client.new(options)
end
respond_to?(method_name, include_private = false) click to toggle source
Calls superclass method
# File lib/gems.rb, line 20
def respond_to?(method_name, include_private = false)
  new.respond_to?(method_name, include_private) || super(method_name, include_private)
end
respond_to_missing?(method_name, include_private = false) click to toggle source
Calls superclass method
# File lib/gems.rb, line 24
def respond_to_missing?(method_name, include_private = false)
  new.respond_to?(method_name, include_private) || super(method_name, include_private)
end