-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgempath.gemspec
More file actions
32 lines (25 loc) · 1.2 KB
/
Copy pathgempath.gemspec
File metadata and controls
32 lines (25 loc) · 1.2 KB
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
# frozen_string_literal: true
require_relative 'lib/gempath/version'
Gem::Specification.new do |spec|
spec.name = 'gempath'
spec.version = Gempath::VERSION
spec.authors = ['Gavin Didrichsen']
spec.email = ['gavin.didrichsen@gmail.com']
spec.summary = 'Analyze gem dependencies and their relationships'
spec.description = 'A tool for analyzing gem dependencies, showing dependency paths,' \
'versions, and relationships between gems in a Gemfile.lock'
spec.homepage = 'https://github.com/gavindidrichsen/gempath'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.5.0'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = spec.homepage
spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.files = Dir.glob('{bin,lib}/**/*') + %w[LICENSE.txt README.md CHANGELOG.md]
spec.files.reject! { |f| File.directory?(f) }
spec.bindir = 'bin'
spec.executables = ['gempath']
spec.require_paths = ['lib']
spec.add_dependency 'bundler', '~> 2.0'
spec.add_dependency 'thor', '~> 1.0' # For CLI interface
spec.metadata['rubygems_mfa_required'] = 'true'
end