forked from igrigorik/autoperf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
autoperf.gemspec
30 lines (24 loc) · 1.07 KB
/
autoperf.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'autoperf/version'
Gem::Specification.new do |s|
s.name = "autoperf"
s.version = Autoperf::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Joshua Mervine", "Ilya Grigorik"]
s.email = ["joshua@mervine.net", "excluded"]
s.homepage = "http://www.rubyops.net/gems/autoperf"
s.summary = "Autoperf (w/ HTTPerf.rb)"
s.description = "Autoperf is a ruby driver for httperf, designed to help you automate load and performance testing of any web application - for a single end point, or through log replay."
s.add_development_dependency "rake", "~> 10.0.4"
s.add_development_dependency "minitest", "~> 4.7.1"
s.add_dependency "httperfrb", "~> 0.3.11"
s.add_dependency "ruport", "~> 1.6.3"
s.files = Dir.glob("lib/**/*") + Dir.glob("bin/**/*") + %w(README.md Gemfile)
s.require_path = 'lib'
s.bindir = 'bin'
s.executables << 'autoperf'
s.executables << 'make_replay_log'
end
# vim: filetype=ruby: