module Glimmer::FX
Proxy for the original ::Fox module (with the future option of enhancing its abilities)
Public Class Methods
method_missing(method_name, *args, &block)
click to toggle source
Calls superclass method
# File lib/glimmer/fx.rb, line 68 def method_missing(method_name, *args, &block) if ::Fox.respond_to?(method_name, true) ::Fox.send(method_name, *args, &block) else super end end
respond_to?(method_name, *args)
click to toggle source
Calls superclass method
# File lib/glimmer/fx.rb, line 64 def respond_to?(method_name, *args) super || ::Fox.respond_to?(method_name, *args) end