-
Notifications
You must be signed in to change notification settings - Fork 4
/
completely.gemspec
28 lines (24 loc) · 1.02 KB
/
completely.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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'completely/version'
Gem::Specification.new do |s|
s.name = 'completely'
s.version = Completely::VERSION
s.summary = 'Bash Completions Generator'
s.description = 'Generate bash completion scripts using simple YAML configuration'
s.authors = ['Danny Ben Shitrit']
s.email = '[email protected]'
s.files = Dir['README.md', 'lib/**/*.*']
s.executables = ['completely']
s.homepage = 'https://github.com/DannyBen/completely'
s.license = 'MIT'
s.required_ruby_version = '>= 3.0'
s.add_dependency 'colsole', '>= 0.8.1', '< 2'
s.add_dependency 'mister_bin', '~> 0.7'
s.metadata = {
'bug_tracker_uri' => 'https://github.com/DannyBen/completely/issues',
'changelog_uri' => 'https://github.com/DannyBen/completely/blob/master/CHANGELOG.md',
'source_code_uri' => 'https://github.com/DannyBen/completely',
'rubygems_mfa_required' => 'true',
}
end