# -*- 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" s.add_runtime_dependency "thor", '>= 0.15.2' end