-
Notifications
You must be signed in to change notification settings - Fork 0
/
flgen.gemspec
28 lines (23 loc) · 942 Bytes
/
flgen.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
require File.expand_path('lib/flgen/version', __dir__)
Gem::Specification.new do |spec|
spec.name = 'flgen'
spec.version = FLGen::VERSION
spec.authors = ['Taichi Ishitani']
spec.email = ['ishitani@pezy.co.jp']
spec.summary = 'Filelist generator'
spec.description = spec.summary
spec.homepage = 'https://github.com/pezy-computing/flgen'
spec.license = 'Apache-2.0'
spec.metadata = {
'bug_tracker_uri' => 'https://github.com/pezy-computing/flgen/issues',
'rubygems_mfa_required' => 'true',
'source_code_uri' => 'https://github.com/pezy-computing/flgen',
'wiki_uri' => 'https://github.com/pezy-computing/flgen/wiki'
}
spec.files = `git ls-files exe lib sample README.md LICENSE`.split($RS)
spec.bindir = 'exe'
spec.executables = `git ls-files -- exe/*`.split($RS).map(&File.method(:basename))
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 3.0'
end