module Rvine

Constants

VERSION

Public Class Methods

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

Delegate to Rvine::Client.new

Calls superclass method
# File lib/rvine.rb, line 11
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
# File lib/rvine.rb, line 6
def new options={}
  Rvine::Client.new options
end