Sha256: e1dda9b7a2e399eeb67441fc93c519bb8e971d9a12606a168b335420f5c985be

Contents?: true

Size: 1.08 KB

Versions: 3

Compression:

Stored size: 1.08 KB

Contents

Gem::Specification.new do |s|
  s.name              = 'bson_ext'

  s.version           = File.read(File.join(File.dirname(__FILE__), 'VERSION'))
  s.platform          = Gem::Platform::RUBY
  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           = 'C extensions for Ruby BSON.'
  s.description       = 'C extensions to accelerate the Ruby BSON serialization. For more information about BSON, see http://bsonspec.org.  For information about MongoDB, see http://www.mongodb.org.'
  s.rubyforge_project = 'bson_ext'

  s.signing_key       = 'gem-private_key.pem'
  s.cert_chain        = ['gem-public_cert.pem']

  s.files             = ['bson_ext.gemspec', 'LICENSE', 'VERSION']
  s.files             += Dir['ext/**/*.rb'] + Dir['ext/**/*.c'] + Dir['ext/**/*.h']

  s.require_paths     = ['ext/bson_ext']
  s.extensions        = ['ext/cbson/extconf.rb']
  s.has_rdoc          = 'yard'

  s.add_dependency('bson', "~> #{s.version}")
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
bson_ext-1.8.3 bson_ext.gemspec
bson_ext-1.8.3.rc1 bson_ext.gemspec
bson_ext-1.8.3.rc0 bson_ext.gemspec