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