Sha256: e20f18b21482d42d2623637b59c1a804e9f6f5339abd7d678dd887929ca150f1
Contents?: true
Size: 1.22 KB
Versions: 6
Compression:
Stored size: 1.22 KB
Contents
Gem::Specification.new do |s| s.name = 'bson' s.version = File.read(File.join(File.dirname(__FILE__), 'VERSION')) s.authors = ['Tyler Brock', 'Gary Murakami', 'Emily Stolfo', 'Brandon Black', 'Durran Jordan'] s.email = 'mongodb-dev@googlegroups.com' s.homepage = 'http://www.mongodb.org' s.summary = 'Ruby implementation of BSON' s.description = 'A Ruby BSON implementation for MongoDB. For more information about Mongo, see http://www.mongodb.org. For more information on BSON, see http://www.bsonspec.org.' s.rubyforge_project = 'bson' s.signing_key = 'gem-private_key.pem' s.cert_chain = ['gem-public_cert.pem'] s.files = ['bson.gemspec', 'LICENSE', 'VERSION'] s.files += ['bin/b2json', 'bin/j2bson', 'lib/bson.rb'] s.files += Dir['lib/bson/**/*.rb'] if RUBY_PLATFORM =~ /java/ s.platform = 'java' s.files += ['ext/jbson/target/jbson.jar', 'ext/jbson/lib/java-bson.jar'] else s.platform = Gem::Platform::RUBY end s.test_files = Dir['test/bson/*.rb'] s.executables = ['b2json', 'j2bson'] s.require_paths = ['lib'] s.has_rdoc = 'yard' end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
bson-1.8.3-java | bson.gemspec |
bson-1.8.3 | bson.gemspec |
bson-1.8.3.rc1-java | bson.gemspec |
bson-1.8.3.rc1 | bson.gemspec |
bson-1.8.3.rc0-java | bson.gemspec |
bson-1.8.3.rc0 | bson.gemspec |