@api private
# File lib/factory_girl/declaration/static.rb, line 5 def initialize(name, value, ignored = false) super(name, ignored) @value = value end
# File lib/factory_girl/declaration/static.rb, line 10 def ==(other) name == other.name && value == other.value && ignored == other.ignored end