Sha256: 95fec845962267138331196f85bd52c69c85d8490f50592158fc673cc76a3e11

Contents?: true

Size: 897 Bytes

Versions: 10

Compression:

Stored size: 897 Bytes

Contents

require './lib/bson'
VERSION_HEADER = File.open(File.join(File.dirname(__FILE__), 'ext', 'cbson', 'version.h'), "r")
VERSION        = VERSION_HEADER.read.scan(/VERSION\s+"(\d+\.\d+(\.\d+\w*)?)\"/)[0][0]
Gem::Specification.new do |s|
  s.name = 'bson_ext'

  s.version  = VERSION
  s.platform = Gem::Platform::RUBY
  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.require_paths = ['ext']
  s.files = ['Rakefile', 'bson_ext.gemspec']
  s.files += Dir['ext/**/*.rb'] + Dir['ext/**/*.c'] + Dir['ext/**/*.h']
  s.test_files = []

  s.has_rdoc = false
  s.extensions << 'ext/cbson/extconf.rb'

  s.author = 'Mike Dirolf'
  s.email = 'mongodb-dev@googlegroups.com'
  s.homepage = 'http://www.mongodb.org'
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
bson_ext-1.1.5 bson_ext.gemspec
bson_ext-1.1.4 bson_ext.gemspec
bson_ext-1.1.3 bson_ext.gemspec
bson_ext-1.1.2 bson_ext.gemspec
bson_ext-1.1.1 bson_ext.gemspec
bson_ext-1.1 bson_ext.gemspec
bson_ext-1.0.9 bson_ext.gemspec
bson_ext-1.0.7 bson_ext.gemspec
bson_ext-1.0.6 bson_ext.gemspec
bson_ext-1.0.5 bson_ext.gemspec