class Payola::Registry

Public Class Methods

method_missing(name, *args) click to toggle source
Calls superclass method
# File lib/payola/registry.rb, line 7
def self.method_missing(name, *args)
  return @registry.public_send(name, *args) if @registry.respond_to? name

  super
end
respond_to_missing?(name) click to toggle source
Calls superclass method
# File lib/payola/registry.rb, line 13
def self.respond_to_missing?(name)
  @registry.respond_to?(name) || super
end