Fixing mongo.gemspec so it doesn't throw error on older versions of Rubygems.

This commit is contained in:
Ben Atkins 2012-02-28 10:22:30 -05:00
parent 579e187e4f
commit be8179ae58
1 changed files with 1 additions and 1 deletions

View File

@ -30,5 +30,5 @@ Gem::Specification.new do |s|
s.email = 'mongodb-dev@googlegroups.com'
s.homepage = 'http://www.mongodb.org'
s.add_dependency('bson', Mongo::VERSION)
s.add_dependency('bson', "~> #{Mongo::VERSION}")
end