This repository has been archived by the owner on Jul 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
pass-station.gemspec
44 lines (37 loc) · 1.95 KB
/
pass-station.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# frozen_string_literal: true
require_relative 'lib/pass_station/version'
Gem::Specification.new do |s|
s.name = 'pass-station'
s.version = Version::VERSION
s.platform = Gem::Platform::RUBY
s.summary = 'CLI & library to search for default credentials among thousands of Products / Vendors'
s.description = 'CLI & library to search for default credentials among thousands of Products / Vendors'
s.authors = ['Alexandre ZANNI']
s.email = 'alexandre.zanni@engineer.com'
s.homepage = 'https://sec-it.github.io/pass-station/'
s.license = 'MIT'
s.files = Dir['bin/*'] + Dir['lib/**/*.rb'] + Dir['data/*.csv']
s.files += ['LICENSE']
s.bindir = 'bin'
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.require_paths = ['lib']
s.metadata = {
'yard.run' => 'yard',
'bug_tracker_uri' => 'https://github.com/sec-it/pass-station/issues',
'changelog_uri' => 'https://github.com/sec-it/pass-station/blob/master/docs/CHANGELOG.md',
'documentation_uri' => 'https://sec-it.github.io/pass-station/yard/',
'homepage_uri' => 'https://sec-it.github.io/pass-station/',
'source_code_uri' => 'https://github.com/sec-it/pass-station/'
}
s.required_ruby_version = ['>= 2.6.0', '< 3.1']
s.add_runtime_dependency('docopt', '~> 0.6') # for argument parsing
s.add_runtime_dependency('paint', '~> 2.2') # for colorized ouput
s.add_development_dependency('bundler', ['>= 2.1.0', '< 2.3'])
s.add_development_dependency('commonmarker', '~> 0.21') # for GMF support in YARD
s.add_development_dependency('github-markup', '~> 3.0') # for GMF support in YARD
s.add_development_dependency('minitest', '~> 5.12')
s.add_development_dependency('rake', '~> 13.0')
s.add_development_dependency('redcarpet', '~> 3.5') # for GMF support in YARD
s.add_development_dependency('rubocop', '~> 1.10')
s.add_development_dependency('yard', '~> 0.9')
end