module BerlinBuehnen

Constants

VERSION

Public Class Methods

method_missing(method_name, *args, &block) click to toggle source
Calls superclass method
# File lib/berlin_buehnen.rb, line 16
def method_missing(method_name, *args, &block)
  return super unless respond_to_missing?(method_name)
  Client.send(method_name, *args, &block)
end
new(options={}) click to toggle source
# File lib/berlin_buehnen.rb, line 11
def new(options={})
  Client.new(options)
end
respond_to_missing?(method_name, include_private=false) click to toggle source
# File lib/berlin_buehnen.rb, line 22
def respond_to_missing?(method_name, include_private=false)
  Client.respond_to?(method_name, include_private)
end

Private Instance Methods

method_missing(method_name, *args, &block) click to toggle source
Calls superclass method
# File lib/berlin_buehnen.rb, line 16
def method_missing(method_name, *args, &block)
  return super unless respond_to_missing?(method_name)
  Client.send(method_name, *args, &block)
end
new(options={}) click to toggle source
# File lib/berlin_buehnen.rb, line 11
def new(options={})
  Client.new(options)
end
respond_to_missing?(method_name, include_private=false) click to toggle source
# File lib/berlin_buehnen.rb, line 22
def respond_to_missing?(method_name, include_private=false)
  Client.respond_to?(method_name, include_private)
end