forked from mongodb/mongo-ruby-driver
-
Notifications
You must be signed in to change notification settings - Fork 1
/
bson_ext.gemspec
21 lines (17 loc) · 997 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
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']
s.email = '[email protected]'
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.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