lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'itdis/version' Gem::Specification.new do |s| s.name = 'itdis' s.version = ItdisVersion::VERSION s.platform = Gem::Platform::RUBY s.date = '2019-02-27' s.summary = 'Is This Domain In Scope' s.description = 'Is a small tool that allows you to check if a list of domains you have been provided is in the scope of your pentest or not.' s.authors = ['Alexandre ZANNI'] s.email = 'alexandre.zanni@europe.com' s.homepage = 'https://noraj.gitlab.io/itdis/' s.license = 'MIT' s.files = `git ls-files`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) } # s.test_files = s.files.grep(%r{^(test)/}) s.require_paths = ['lib'] s.metadata = { 'yard.run' => 'yard', 'bug_tracker_uri' => 'https://gitlab.com/noraj/itdis/issues', 'changelog_uri' => 'https://noraj.gitlab.io/itdis/file.CHANGELOG.html', 'documentation_uri' => 'https://noraj.gitlab.io/itdis/', 'homepage_uri' => 'https://noraj.gitlab.io/itdis/', 'source_code_uri' => 'https://gitlab.com/noraj/itdis/tree/master' } s.required_ruby_version = '~> 2.6' s.add_runtime_dependency('docopt', '~> 0.6') # for argument parsing s.add_runtime_dependency('paint', '~> 2.1') # for colorized ouput s.add_development_dependency('bundler', '~> 2.0') s.add_development_dependency('commonmarker', '~> 0.18') # for GMF support in YARD s.add_development_dependency('github-markup', '~> 3.0') # for GMF support in YARD s.add_development_dependency('minitest', '~> 5.11') s.add_development_dependency('rake', '~> 12.3') s.add_development_dependency('redcarpet', '~> 3.4') # for GMF support in YARD s.add_development_dependency('rubocop', '~> 0.65') s.add_development_dependency('yard', '~> 0.9') end