-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsugarjar.gemspec
34 lines (32 loc) · 1.16 KB
/
sugarjar.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
require_relative 'lib/sugarjar/version'
Gem::Specification.new do |spec|
spec.name = 'sugarjar'
spec.version = SugarJar::VERSION
spec.summary = 'A git/github helper script'
spec.authors = ['Phil Dibowitz']
spec.email = ['[email protected]']
spec.license = 'Apache-2.0'
spec.homepage = 'https://github.com/jaymzh/sugarjar'
# We'll support 3.0 until 2024-03-31 when it goes EOL
# https://www.ruby-lang.org/en/downloads/branches/
spec.required_ruby_version = '>= 3.0'
docs = %w{README.md LICENSE Gemfile sugarjar.gemspec}
spec.extra_rdoc_files = docs
spec.executables << 'sj'
spec.files =
Dir.glob('lib/sugarjar/*.rb') +
Dir.glob('bin/*') +
Dir.glob('extras/*')
spec.add_dependency 'deep_merge'
spec.add_dependency 'mixlib-log'
spec.add_dependency 'mixlib-shellout'
spec.add_dependency 'pastel'
spec.metadata = {
'rubygems_mfa_required' => 'true',
'bug_tracker_uri' => 'https://github.com/jaymzh/sugarjar/issues',
'changelog_uri' =>
'https://github.com/jaymzh/sugarjar/blob/main/CHANGELOG.md',
'homepage_uri' => 'https://github.com/jaymzh/sugajar',
'source_code_uri' => 'https://github.com/jaymzh/sugarjar',
}
end