-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathunwrappr.gemspec
57 lines (49 loc) · 1.94 KB
/
unwrappr.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'unwrappr/version'
AUTHORS = {
'[email protected]' => 'Emilyn Escabarte',
'[email protected]' => 'Joe Sustaric',
'[email protected]' => 'Orien Madgwick',
'[email protected]' => 'Pete Johns',
'[email protected]' => 'Vladimir Chervanev'
}.freeze
GITHUB_URL = 'https://github.com/envato/unwrappr'
HOMEPAGE_URL = 'https://opensource.envato.com/projects/unwrappr.html'
Gem::Specification.new do |spec| # rubocop:disable Metrics/BlockLength:
spec.name = 'unwrappr'
spec.version = Unwrappr::VERSION
spec.authors = AUTHORS.values
spec.email = AUTHORS.keys
spec.summary = "A tool to unwrap your gems and see what's changed easily"
spec.description = 'bundle update PRs: Automated. Annotated.'
spec.homepage = HOMEPAGE_URL
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.5'
spec.required_rubygems_version = '>= 2.7'
spec.files = Dir.chdir(__dir__) do
`git ls-files -z`.split("\x0").reject do |f|
f.start_with?(*%w[. CODE_OF_CONDUCT Gemfile Guardfile Rakefile bin spec unwrappr.gemspec])
end
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_dependency 'base64'
spec.add_dependency 'bundler', '< 3'
spec.add_dependency 'bundler-audit', '>= 0.6.0'
spec.add_dependency 'clamp', '~> 1'
spec.add_dependency 'faraday', '~> 1'
spec.add_dependency 'git', '~> 1'
spec.add_dependency 'octokit', '~> 4.0'
spec.add_dependency 'safe_shell', '~> 1'
spec.metadata = {
'bug_tracker_uri' => "#{GITHUB_URL}/issues",
'changelog_uri' => "#{GITHUB_URL}/blob/HEAD/CHANGELOG.md",
'documentation_uri' => "#{GITHUB_URL}/blob/HEAD/README.md",
'homepage_uri' => HOMEPAGE_URL,
'rubygems_mfa_required' => 'true',
'source_code_uri' => GITHUB_URL
}
end