class FactoryBot::Declaration::Dynamic

@api private

def ==(other)

def ==(other)
  self.class == other.class &&
    name == other.name &&
    ignored == other.ignored &&
    block == other.block
end

def build

def build
  [Attribute::Dynamic.new(name, @ignored, @block)]
end

def initialize(name, ignored = false, block = nil)

def initialize(name, ignored = false, block = nil)
  super(name, ignored)
  @block = block
end