forked from gauntlt/gauntlt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgauntlt.gemspec
31 lines (26 loc) · 1.34 KB
/
gauntlt.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "gauntlt/version"
Gem::Specification.new do |s|
s.name = "gauntlt"
s.version = Gauntlt::VERSION
s.authors = ["James Wickett", "Mani Tadayon"]
s.email = ["[email protected]"]
s.license = 'MIT'
s.homepage = "https://github.com/gauntlt/gauntlt"
s.summary = %q{behaviour-driven security using cucumber}
s.description = %q{Using standard Gherkin language to define security tests, gauntlt happily wraps cucumber functionality and provides a security testing framework that security engineers, developers and operations teams can collaborate on together.}
s.files = `git ls-files`.split("\n")
s.files.reject! { |fn| fn.include? "vendor" }
s.files.reject! { |fn| fn.include? "examples" }
s.files.reject! { |fn| fn.include? "ready_to_rumble" }
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency 'rake', '~> 11.0.1'
s.add_development_dependency 'arachni', '= 1.4'
s.add_runtime_dependency 'cucumber', '= 1.3.20'
s.add_runtime_dependency 'aruba', '= 0.5.4'
s.add_runtime_dependency 'nokogiri', '~> 1.6.5'
s.add_runtime_dependency 'trollop', '~> 2.1.2'
end