forked from mongodb/mongo-ruby-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bson_ext.gemspec
23 lines (19 loc) · 882 Bytes
/
bson_ext.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 = '[email protected]'
s.homepage = 'http://www.mongodb.org'
end