tapajos/highrise

View on GitHub
lib/highrise/subject_data.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Highrise
  class SubjectData < Base
    def==other
      attributes["value"] == other.attributes["value"] &&
      attributes["subject_field_label"] == other.attributes["subject_field_label"]
    end
  end
end