-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmaxmind-db.gemspec
28 lines (25 loc) · 1.25 KB
/
maxmind-db.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
# frozen_string_literal: true
Gem::Specification.new do |s|
s.authors = ['William Storey']
s.files = Dir['**/*'].difference(Dir['.github/**/*', 'dev-bin/**/*'])
s.name = 'maxmind-db'
s.summary = 'A gem for reading MaxMind DB files.'
s.version = '1.2.0'
s.description = 'A gem for reading MaxMind DB files. MaxMind DB is a binary file format that stores data indexed by IP address subnets (IPv4 or IPv6).'
s.email = '[email protected]'
s.homepage = 'https://github.com/maxmind/MaxMind-DB-Reader-ruby'
s.licenses = ['Apache-2.0', 'MIT']
s.metadata = {
'bug_tracker_uri' => 'https://github.com/maxmind/MaxMind-DB-Reader-ruby/issues',
'changelog_uri' => 'https://github.com/maxmind/MaxMind-DB-Reader-ruby/blob/main/CHANGELOG.md',
'documentation_uri' => 'https://www.rubydoc.info/gems/maxmind-db',
'homepage_uri' => 'https://github.com/maxmind/MaxMind-DB-Reader-ruby',
'source_code_uri' => 'https://github.com/maxmind/MaxMind-DB-Reader-ruby',
'rubygems_mfa_required' => 'true',
}
s.required_ruby_version = '>= 3.0'
s.add_development_dependency 'minitest'
s.add_development_dependency 'rake'
s.add_development_dependency 'rubocop'
s.add_development_dependency 'rubocop-performance'
end