Sha256: 8b09732f3b2d5c4819900d5c03e186171bca348e5b02edbf663eb6a2d2466f82

Contents?: true

Size: 1.46 KB

Versions: 2

Compression:

Stored size: 1.46 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "bigbench/version"

Gem::Specification.new do |s|
  s.name        = "bigbench"
  s.version     = BigBench::VERSION
  s.authors     = ["Thomas Fankhauser"]
  s.email       = ["tommylefunk@googlemail.com"]
  s.homepage    = "http://southdesign.github.com/bigbench"
  s.summary     = %q{A large scale ruby penetration tool}
  s.description = %q{Setup a network of bots only waiting to attack a few lonesome servers and force them to their limits}

  s.rubyforge_project = "bigbench"

  s.files         = `git ls-files`.split("\n")
  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.rdoc_options << '--include' << 'lib/bigbench/help/'

  s.add_development_dependency "rspec"
  s.add_development_dependency "activesupport", '>= 3.2.0'
  s.add_development_dependency "actionpack",    '>= 3.2.0'
  s.add_development_dependency "rack"
  s.add_development_dependency "thin"
  s.add_development_dependency "eventmachine"
  s.add_development_dependency "em-http-request"
  s.add_development_dependency "sinatra"
  
  s.add_runtime_dependency "activesupport", '>= 3.2.0'
  s.add_runtime_dependency "actionpack",    '>= 3.2.0'
  s.add_runtime_dependency "redis"
  s.add_runtime_dependency "eventmachine"
  s.add_runtime_dependency "em-http-request"
  s.add_runtime_dependency "hirb"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bigbench-0.0.4 bigbench.gemspec
bigbench-0.0.3 bigbench.gemspec