BUMP BSON 1.0.5
This commit is contained in:
parent
c7c309b00d
commit
e843891c8a
|
@ -14,4 +14,4 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define VERSION "1.0.4"
|
#define VERSION "1.0.5"
|
||||||
|
|
|
@ -2,10 +2,10 @@
|
||||||
|
|
||||||
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
||||||
|
|
||||||
MINIMUM_BSON_EXT_VERSION = "1.0.4"
|
MINIMUM_BSON_EXT_VERSION = "1.0.5"
|
||||||
|
|
||||||
module BSON
|
module BSON
|
||||||
VERSION = "1.0.4"
|
VERSION = "1.0.5"
|
||||||
def self.serialize(obj, check_keys=false, move_id=false)
|
def self.serialize(obj, check_keys=false, move_id=false)
|
||||||
BSON_CODER.serialize(obj, check_keys, move_id)
|
BSON_CODER.serialize(obj, check_keys, move_id)
|
||||||
end
|
end
|
||||||
|
|
|
@ -13,7 +13,7 @@ Gem::Specification.new do |s|
|
||||||
|
|
||||||
s.files = ['README.rdoc', 'HISTORY', 'Rakefile',
|
s.files = ['README.rdoc', 'HISTORY', 'Rakefile',
|
||||||
'mongo.gemspec', 'LICENSE.txt']
|
'mongo.gemspec', 'LICENSE.txt']
|
||||||
s.files += ['lib/mongo.rb'] + Dir['lib/mongo/**/*.rb']
|
v s.files += ['lib/mongo.rb'] + Dir['lib/mongo/**/*.rb']
|
||||||
s.files += Dir['examples/**/*.rb'] + Dir['bin/**/*.rb']
|
s.files += Dir['examples/**/*.rb'] + Dir['bin/**/*.rb']
|
||||||
s.test_files = Dir['test/**/*.rb']
|
s.test_files = Dir['test/**/*.rb']
|
||||||
|
|
||||||
|
@ -29,5 +29,5 @@ Gem::Specification.new do |s|
|
||||||
s.email = 'mongodb-dev@googlegroups.com'
|
s.email = 'mongodb-dev@googlegroups.com'
|
||||||
s.homepage = 'http://www.mongodb.org'
|
s.homepage = 'http://www.mongodb.org'
|
||||||
|
|
||||||
s.add_dependency(%q<bson>, [">= 1.0.4"])
|
s.add_dependency(%q<bson>, [">= 1.0.5"])
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue