From: Kevin Clark Date: Mon, 5 Jan 2009 23:00:22 +0000 (+0000) Subject: THRFIT-231. rb: Make Thrift::Structs hashable X-Git-Tag: 0.2.0~380 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=bcb4cf83e56ecbe5167d8c6ae79248c35020afe4;p=common%2Fthrift.git THRFIT-231. rb: Make Thrift::Structs hashable Author: Bryan Duxbury git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@731760 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/lib/rb/lib/thrift/struct.rb b/lib/rb/lib/thrift/struct.rb index 4b991680..25eb9819 100644 --- a/lib/rb/lib/thrift/struct.rb +++ b/lib/rb/lib/thrift/struct.rb @@ -129,6 +129,15 @@ module Thrift true end + def eql?(other) + self.class == other.class && self == other + end + + # for the time being, we're ok with a naive hash. this could definitely be improved upon. + def hash + 0 + end + def self.field_accessor(klass, *fields) fields.each do |field| klass.send :attr_reader, field