mongodb-mongo 0.2.3 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -86,7 +86,7 @@ module XGen
86
86
  end
87
87
 
88
88
  def eql?(other)
89
- @data == other.to_a
89
+ @data == other.instance_variable_get("@data")
90
90
  end
91
91
  alias_method :==, :eql?
92
92
 
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'mongo'
3
- s.version = '0.2.3'
3
+ s.version = '0.2.4'
4
4
  s.platform = Gem::Platform::RUBY
5
5
  s.summary = 'Simple pure-Ruby driver for the 10gen Mongo DB'
6
6
  s.description = 'A pure-Ruby driver for the 10gen Mongo DB. For more information about Mongo, see http://www.mongodb.org.'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mongodb-mongo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jim Menard