Sha256: 7aa025dab6fd149893e003bea0ffdca2af809d2d836fc0b50c747b5eb985a06d
Contents?: true
Size: 1.33 KB
Versions: 24
Compression:
Stored size: 1.33 KB
Contents
Gem::Specification.new do |s| s.name = 'bson' s.version = File.read(File.join(File.dirname(__FILE__), 'VERSION')) s.authors = ['Emily Stolfo', 'Durran Jordan', 'Gary Murakami', 'Tyler Brock', 'Brandon Black'] 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.license = 'Apache License Version 2.0' if File.exists?('gem-private_key.pem') s.signing_key = 'gem-private_key.pem' s.cert_chain = ['gem-public_cert.pem'] else warn 'Warning: No private key present, creating unsigned gem.' end 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.executables = ['b2json', 'j2bson'] s.require_paths = ['lib'] s.has_rdoc = 'yard' end
Version data entries
24 entries across 24 versions & 1 rubygems