Method: Origami::Reference#==

Defined in:
lib/origami/reference.rb

#==(ref) ⇒ Object Also known as: eql?

Compares to Reference object.



108
109
110
111
112
# File 'lib/origami/reference.rb', line 108

def ==(ref)
    return false unless ref.is_a?(Reference)

    self.to_a == ref.to_a
end