-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtomlib.gemspec
38 lines (29 loc) · 1.13 KB
/
tomlib.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
# frozen_string_literal: true
require_relative 'lib/tomlib/version'
Gem::Specification.new do |spec|
spec.name = 'tomlib'
spec.version = Tomlib::VERSION
spec.authors = ['Kamil Giszczak']
spec.email = ['[email protected]']
spec.summary = 'Fast TOML parser and generator with native extension.'
spec.description = 'Fast TOML parser and generator with native extension.'
spec.homepage = 'https://github.com/kgiszczak/tomlib'
spec.license = 'MIT'
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.metadata['homepage_uri'] = 'https://github.com/kgiszczak/tomlib'
spec.metadata['source_code_uri'] = 'https://github.com/kgiszczak/tomlib'
spec.metadata['changelog_uri'] = 'https://github.com/kgiszczak/tomlib/blob/master/CHANGELOG.md'
spec.metadata['bug_tracker_uri'] = 'https://github.com/kgiszczak/tomlib/issues'
spec.files = Dir[
'CHANGELOG.md',
'LICENSE.txt',
'README.md',
'tomlib.gemspec',
'ext/**/*',
'lib/**/*.rb',
]
spec.require_paths = ['lib']
spec.extensions = ['ext/tomlib/extconf.rb']
spec.add_runtime_dependency 'bigdecimal'
spec.required_ruby_version = '>= 3.0.0'
end