Sha256: 23fbbd91bcf9eff0ddc97dc992b1f03abd5a3e2e52116dc239db832bc007303c

Contents?: true

Size: 882 Bytes

Versions: 8

Compression:

Stored size: 882 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 "(\d[^"]+)"/)[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

8 entries across 8 versions & 2 rubygems

Version Path
bson_ext-1.5.1 bson_ext.gemspec
bson_ext-1.5.0 bson_ext.gemspec
bson_ext-1.5.0.rc0 bson_ext.gemspec
vanity-1.7.1 vendor/ruby/1.9.1/gems/bson_ext-1.3.1/bson_ext.gemspec
bson_ext-1.4.0 bson_ext.gemspec
bson_ext-1.3.1 bson_ext.gemspec
bson_ext-1.3.0 bson_ext.gemspec
bson_ext-1.3.0.rc0 bson_ext.gemspec