-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrggen-duh.gemspec
33 lines (26 loc) · 1.08 KB
/
rggen-duh.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
# frozen_string_literal: true
require File.expand_path('lib/rggen/duh/version', __dir__)
Gem::Specification.new do |spec|
spec.name = 'rggen-duh'
spec.version = RgGen::DUH::VERSION
spec.authors = ['Taichi Ishitani']
spec.email = ['[email protected]']
spec.summary = "rggen-dut-#{RgGen::DUH::VERSION}"
spec.description = 'DUH support for RgGen'
spec.homepage = 'https://github.com/rggen/rggen-duh'
spec.license = 'MIT'
spec.metadata = {
'bug_tracker_uri' => 'https://github.com/rggen/rggen/issues',
'mailing_list_uri' => 'https://groups.google.com/d/forum/rggen',
'rubygems_mfa_required' => 'true',
'source_code_uri' => 'https://github.com/rggen/rggen-duh',
'wiki_uri' => 'https://github.com/rggen/rggen/wiki'
}
spec.files =
`git ls-files lib LICENSE CODE_OF_CONDUCT.md README.md`.split($RS)
spec.require_paths = ['lib']
spec.required_ruby_version = Gem::Requirement.new('>= 3.1')
spec.add_runtime_dependency 'json_refs', '>= 0.1.4'
spec.add_runtime_dependency 'json_schemer', '>= 2.0.0'
spec.add_runtime_dependency 'rb_json5', '>= 0.3.0'
end