-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathscanssl.gemspec
More file actions
26 lines (23 loc) · 856 Bytes
/
scanssl.gemspec
File metadata and controls
26 lines (23 loc) · 856 Bytes
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
# -*- encoding: utf-8 -*
require File.expand_path("../lib/scanssl/version", __FILE__)
Gem::Specification.new do |s|
s.name = 'ScanSSL'
s.version = ScanSSL::VERSION
s.date = '2016-08-30'
s.summary = 'ScanSSL'
s.description = 'A simple and easy to use SSL Cipher scanner'
s.authors = ["bararchy", "ik5", "elichai", "Dor Lerner", "wolfedale"]
s.email = 'bar.hofesh@gmail.com'
s.files = ["lib/scanssl.rb",
"lib/scanssl/version.rb",
"lib/scanssl/certInfo.rb",
"lib/scanssl/fileExport.rb",
"lib/scanssl/scanHost.rb",
"lib/scanssl/settings.rb"]
s.homepage = 'https://github.com/bararchy/ruby-SSLscanner'
s.license = 'MIT'
s.executables = ["scanssl"]
s.require_paths = ["lib"]
s.add_dependency('colorize', '~> 0')
s.add_dependency('prawn', '~> 0')
end