class Swaggable::TagDefinition

Public Instance Methods

==(other) click to toggle source
# File lib/swaggable/tag_definition.rb, line 12
def == other
  self.name == other.name if other.respond_to?(:name)
end
Also aliased as: eql?
eql?(other)
Alias for: ==
hash() click to toggle source
# File lib/swaggable/tag_definition.rb, line 17
def hash
  name.hash
end