module OAS

Constants

VERSION

Public Class Methods

client(options={}) click to toggle source
# File lib/oas.rb, line 9
def self.client(options={})
  @client = OAS::Client.new(options) unless defined?(@client)
  @client
end
method_missing(method, *args, &block) click to toggle source
Calls superclass method
# File lib/oas.rb, line 14
def self.method_missing(method, *args, &block)
  return super unless client.respond_to?(method)
  client.send(method, *args, &block)
end
respond_to_missing?(method, include_private = false) click to toggle source
# File lib/oas.rb, line 19
def self.respond_to_missing?(method, include_private = false)
  client.respond_to?(method, include_private)
end