Sha256: 7e23a0ccc26e14d322304ea41731b77bb2284836a6fb0ddf95fc469be9a8ef00

Contents?: true

Size: 1.25 KB

Versions: 9

Compression:

Stored size: 1.25 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.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_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

9 entries across 9 versions & 1 rubygems

Version Path
bson_ext-1.10.0 bson_ext.gemspec
bson_ext-1.10.0.rc1 bson_ext.gemspec
bson_ext-1.10.0.rc0 bson_ext.gemspec
bson_ext-1.9.2 bson_ext.gemspec
bson_ext-1.9.1 bson_ext.gemspec
bson_ext-1.9.1.rc0 bson_ext.gemspec
bson_ext-1.9.0 bson_ext.gemspec
bson_ext-1.8.6 bson_ext.gemspec
bson_ext-1.8.5 bson_ext.gemspec