Sha256: 844beb620c7aba05e5799623de9f7b4de9139d5e7240499824e7113a1c97915f
Contents?: true
Size: 452 Bytes
Versions: 14
Compression:
Stored size: 452 Bytes
Contents
module Plezi module_function # Defers any missing methods to the GReactor Library. def method_missing name, *args, &block return super unless REACTOR_METHODS.include? name ::GReactor.send name, *args, &block end # Defers any missing methods to the GReactor Library. def respond_to_missing?(name, include_private = false) REACTOR_METHODS.include?(name) || super end protected REACTOR_METHODS = ::GReactor.public_methods(false) end
Version data entries
14 entries across 14 versions & 1 rubygems