-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-audit.gemspec
31 lines (25 loc) · 1.34 KB
/
package-audit.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
require_relative 'lib/package/audit/version'
Gem::Specification.new do |spec|
spec.name = 'package-audit'
spec.version = Package::Audit::VERSION
spec.authors = ['Tactica Communications Inc.']
spec.email = ['support@tactica.ca']
spec.summary = 'A helper tool to find outdated, deprecated and vulnerable dependencies.'
spec.description = 'A useful tool for patch management and prioritization, package-audit produces a list of dependencies that are outdated, deprecated or have security vulnerabilities.' # rubocop:disable Layout/LineLength
spec.homepage = 'https://github.com/tactica/package-audit'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.6.0'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/tactica/package-audit'
# Specify which files should be added to the gem when it is released.
spec.files = Dir.glob('{exe,lib,sig}/**/*', File::FNM_DOTMATCH)
spec.bindir = 'exe'
spec.executables << 'package-audit'
spec.require_paths = ['lib']
# Uncomment to register a new dependency of your gem
spec.add_dependency 'bundler-audit', '~> 0.8'
spec.add_dependency 'thor', '~> 1.2'
# For more information and examples about making a new gem, check out our
# guide at: https://bundler.io/guides/creating_gem.html
spec.metadata['rubygems_mfa_required'] = 'true'
end