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