module AP

Constants

VERSION

Public Class Methods

client(options = {}) click to toggle source

Alias for AP::Client.new

# File lib/ap.rb, line 19
def self.client(options = {})
  AP::Client.new(options)
end
method_missing(method, *args, &block) click to toggle source
Calls superclass method
# File lib/ap.rb, line 23
def self.method_missing(method, *args, &block)
  return super unless client.respond_to?(method)
  client.send(method, *args, &block)
end
respond_to?(method, include_private = false) click to toggle source
Calls superclass method
# File lib/ap.rb, line 28
def self.respond_to?(method, include_private = false)
  client.respond_to?(method, include_private) || super(method, include_private)
end