-
Notifications
You must be signed in to change notification settings - Fork 2
/
diver_down.gemspec
30 lines (24 loc) · 1.29 KB
/
diver_down.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
# frozen_string_literal: true
require_relative 'lib/diver_down/version'
Gem::Specification.new do |spec|
spec.name = 'diver_down'
spec.version = DiverDown::VERSION
spec.authors = ['alpaca-tc']
spec.email = ['[email protected]']
spec.summary = 'dynamically analyze application dependencies and generate a comprehensive dependency map'
spec.description = 'DiverDown is a tool designed to dynamically analyze application dependencies and generate a comprehensive dependency map. It is particularly useful for analyzing Ruby applications, aiding significantly in large-scale refactoring projects or transitions towards a modular monolith architecture.'
spec.homepage = 'https://github.com/alpaca-tc/diver_down'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.2.0'
spec.metadata['homepage_uri'] = spec.homepage
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
spec.files = Dir.chdir(__dir__) do
Dir['lib/**/*'] + Dir['web/**/*'] + ['README.md', 'LICENSE.txt', 'CHANGELOG.md']
end
spec.bindir = 'exe'
spec.executables = ['diver_down_web']
spec.require_paths = ['lib']
spec.add_dependency 'activesupport', '>= 7.0.0'
spec.add_dependency 'rack-contrib', '>= 2.3.0'
end