forked from mongodb/bson-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbson.gemspec
40 lines (34 loc) · 1.4 KB
/
bson.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'bson/version'
Gem::Specification.new do |s|
s.name = 'bson'
s.rubyforge_project = 'bson'
s.version = BSON::VERSION
s.authors = ['Tyler Brock', 'Durran Jordan', 'Brandon Black', 'Emily Stolfo', 'Gary Murakami']
s.email = ['mongodb-dev@googlegroups.com']
s.homepage = 'http://bsonspec.org'
s.summary = 'Ruby Implementation of the BSON specification'
s.description = 'A full featured BSON specification implementation, in Ruby'
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 "[#{s.name}] Warning: No private key present, creating unsigned gem."
end
s.files = %w(CONTRIBUTING.md CHANGELOG.md LICENSE NOTICE README.md Rakefile)
s.files += Dir.glob('lib/**/*')
unless RUBY_PLATFORM =~ /java/
s.platform = Gem::Platform::RUBY
s.files += Dir.glob('ext/**/*.{c,h,rb}')
s.extensions = ['ext/bson/extconf.rb']
else
s.platform = 'java'
end
s.test_files = Dir.glob('spec/**/*')
s.require_path = 'lib'
s.required_ruby_version = '>= 1.8.7'
s.required_rubygems_version = '>= 1.3.6'
s.has_rdoc = 'yard'
end