Sha256: 988d39cfb6bd62753d025bc78b83f397d5591d88ffc74486e2bcfdaad309003b

Contents?: true

Size: 1.91 KB

Versions: 1

Compression:

Stored size: 1.91 KB

Contents

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
itdis-0.0.1 itdis.gemspec