-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdeadfinder.gemspec
27 lines (26 loc) · 1.59 KB
/
deadfinder.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
require_relative 'lib/deadfinder/version'
Gem::Specification.new do |s|
s.name = 'deadfinder'
s.version = DeadFinder::VERSION
s.summary = 'Find dead-links (broken links)'
s.description = 'Find dead-links (broken links). Dead link (broken link) means a link within a web page that cannot be connected. These links can have a negative impact to SEO and Security. This tool makes it easy to identify and modify.'
s.authors = ['hahwul']
s.email = '[email protected]'
s.files = ['lib/deadfinder.rb']
s.homepage = 'https://www.hahwul.com/projects/deadfinder/'
s.license = 'MIT'
s.executables << 'deadfinder'
s.files = ['lib/deadfinder.rb', 'lib/deadfinder/logger.rb', 'lib/deadfinder/runner.rb', 'lib/deadfinder/cli.rb', 'lib/deadfinder/utils.rb', 'lib/deadfinder/version.rb', 'lib/deadfinder/http_client.rb', 'lib/deadfinder/url_pattern_matcher.rb', 'lib/deadfinder/completion.rb']
s.metadata['rubygems_mfa_required'] = 'true'
s.metadata['source_code_uri'] = 'https://github.com/hahwul/deadfinder'
s.required_ruby_version = '>= 3.3.0'
s.add_runtime_dependency 'colorize', '~> 0.8.0', '>= 0.8.0'
s.add_runtime_dependency 'concurrent-ruby-edge', '~> 0.6.0', '>= 0.6.0'
s.add_runtime_dependency 'json', '>= 2.6', '< 2.11'
s.add_runtime_dependency 'nokogiri', '~> 1.13.0', '>= 1.13.0'
s.add_runtime_dependency 'open-uri', '~> 0.2.0', '>= 0.2.0'
s.add_runtime_dependency 'set', '~> 1.1.0', '>= 1.1.0'
s.add_runtime_dependency 'sitemap-parser', '~> 0.5.0', '>= 0.5.0'
s.add_runtime_dependency 'thor', '~> 1.2.0', '>= 1.2.0'
s.add_development_dependency 'rspec'
end