module Rails::Railtie::Configurable::ClassMethods
def configure(&block)
def configure(&block) class_eval(&block) end
def inherited(base)
def inherited(base) raise "You cannot inherit from a #{superclass.name} child" end
def instance
def instance @instance ||= new end
def method_missing(...)
def method_missing(...) instance.send(...) end
def respond_to?(*args)
def respond_to?(*args) super || instance.respond_to?(*args) end