module Mudfly

Constants

VERSION

Public Class Methods

method_missing(symbol, *args) click to toggle source

Delegate to Mudfly::Client

Calls superclass method
# File lib/mudfly.rb, line 8
def self.method_missing(symbol, *args)

  if Client.respond_to?(symbol)

    return Client.send(symbol, *args)

  else

    return super

  end
  
end
respond_to?(symbol, include_all = false) click to toggle source

Delegate to Mudfly::Client

Calls superclass method
# File lib/mudfly.rb, line 24
def self.respond_to?(symbol, include_all = false)

  return Client.respond_to?(symbol, include_all) || super(symbol, include_all)

end