-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy patha9n.gemspec
25 lines (20 loc) · 858 Bytes
/
a9n.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
require File.expand_path('lib/a9n/version', __dir__)
Gem::Specification.new do |spec|
spec.name = 'a9n'
spec.version = A9n::VERSION
spec.authors = ['Krzysztof Knapik']
spec.email = ['knapo@knapo.net']
spec.summary = 'a9n - ruby/rails apps configuration manager'
spec.homepage = 'https://github.com/knapo/a9n'
spec.license = 'MIT'
spec.metadata['homepage_uri'] = 'https://github.com/knapo/a9n'
spec.metadata['source_code_uri'] = 'https://github.com/knapo/a9n'
spec.metadata['rubygems_mfa_required'] = 'true'
spec.files = Dir.chdir(__dir__) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(bin/|spec/|test_app/|\.rub)}) }
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 3.2'
end