-
Notifications
You must be signed in to change notification settings - Fork 105
/
bson.gemspec
47 lines (39 loc) · 1.62 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
41
42
43
44
45
46
47
# frozen_string_literal: true
# rubocop:todo all
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.version = BSON::VERSION
s.authors = ["The MongoDB Ruby Team"]
s.email = "dbx-ruby@mongodb.com"
s.homepage = 'https://www.mongodb.com/docs/ruby-driver/current/tutorials/bson-v4/'
s.summary = 'Ruby implementation of the BSON specification'
s.description = 'A fully featured BSON specification implementation in Ruby'
s.license = 'Apache-2.0'
s.metadata = {
'bug_tracker_uri' => 'https://jira.mongodb.org/projects/RUBY',
'changelog_uri' => 'https://github.com/mongodb/bson-ruby/releases',
'documentation_uri' => 'https://www.mongodb.com/docs/ruby-driver/current/tutorials/bson-v4/',
'homepage_uri' => 'https://www.mongodb.com/docs/ruby-driver/current/tutorials/bson-v4/',
'source_code_uri' => 'https://github.com/mongodb/bson-ruby'
}
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
if RUBY_VERSION > '3.2.99'
s.add_dependency 'base64'
s.add_dependency 'bigdecimal'
end
s.test_files = Dir.glob('spec/**/*')
s.require_path = 'lib'
s.required_ruby_version = '>= 2.6'
s.required_rubygems_version = '>= 1.3.6'
end