tapajos/highrise

View on GitHub
lib/highrise/tag.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Highrise
  class Tag < Base  
    def ==(object)
      (object.instance_of?(self.class) && object.id == self.id && object.name == self.name)
    end
  end
end