Sha256: 731549295acc3ea61088fb224795914883c71a36b9f2de49aa022e9cfb945320
Contents?: true
Size: 479 Bytes
Versions: 151
Compression:
Stored size: 479 Bytes
Contents
module FactoryGirl class Declaration class Dynamic < Declaration def initialize(name, ignored = false, block = nil) super(name, ignored) @block = block end def ==(other) name == other.name && ignored == other.ignored && block == other.block end protected attr_reader :block private def build [Attribute::Dynamic.new(name, @ignored, @block)] end end end end
Version data entries
151 entries across 96 versions & 7 rubygems