class FactoryBot::Decorator
def self.const_missing(name)
def self.const_missing(name) ::Object.const_get(name) end
def initialize(component)
def initialize(component) @component = component end
def method_missing(name, *args, &block) # rubocop:disable Style/MissingRespondToMissing
def method_missing(name, *args, &block) # rubocop:disable Style/MissingRespondToMissing @component.send(name, *args, &block) end
def respond_to_missing?(name, include_private = false)
def respond_to_missing?(name, include_private = false) @component.respond_to?(name, true) || super end
def send(symbol, *args, &block)
def send(symbol, *args, &block) __send__(symbol, *args, &block) end