module Assonnato
Constants
- VERSION
Public Class Methods
method_missing(method, *args, &block)
click to toggle source
Calls superclass method
# File lib/assonnato/assonnato.rb, line 15 def method_missing(method, *args, &block) return super unless new.respond_to?(method) new.send method, *args, &block end
new(host = 'pigro.omnivium.it', port = 80, ssl = false)
click to toggle source
# File lib/assonnato/assonnato.rb, line 11 def new(host = 'pigro.omnivium.it', port = 80, ssl = false) Client.new host, port, ssl end
respond_to?(method, include_private = false)
click to toggle source
Calls superclass method
# File lib/assonnato/assonnato.rb, line 20 def respond_to?(method, include_private = false) new.respond_to?(method, include_private) || super(method, include_private) end