gauntlt/gauntlt

View on GitHub
gauntlt.gemspec

Summary

Maintainability
Test Coverage
# -*- 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       = ["james@gauntlt.org"]
  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', '~> 12.3'

  s.add_runtime_dependency 'cucumber', '= 1.3.20'
  s.add_runtime_dependency 'aruba', '= 0.7.4'
  s.add_runtime_dependency 'ffi', '~> 1.9.24'
  s.add_runtime_dependency 'nokogiri', '~> 1.11'
  s.add_runtime_dependency 'optimist', '~> 3.0.0'

end