forked from dbrady/tourbus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtourbus.gemspec
34 lines (31 loc) · 1.38 KB
/
tourbus.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
32
33
spec = Gem::Specification.new do |s|
s.name = 'tourbus'
s.version = '0.1.1'
s.date = '2009-07-25'
s.summary = 'TourBus web stress-testing tool'
s.email = "[email protected]"
s.homepage = "http://github.com/dbrady/tourbus/"
s.description = "TourBus, a web stress-testing tool that combines complex 'tour' definitions with scalable concurrent testing"
s.has_rdoc = true
s.rdoc_options = ["--line-numbers", "--inline-source", "--main", "README.rdoc", "--title", "Tourbus - Web Stress Testing in Ruby"]
s.executables = ["tourbus", "tourwatch"]
s.extra_rdoc_files = ["README.rdoc", "MIT-LICENSE", "examples/contact_app/README.rdoc"]
s.authors = ["David Brady", "James Britt"]
s.add_dependency('mechanize', '>= 0.8.5')
s.add_dependency('trollop')
s.add_dependency('faker')
s.add_dependency('hpricot')
s.add_dependency('webrat')
# ruby -rpp -e "pp (Dir['{README,{examples,lib,protocol,spec}/**/*.{rdoc,json,rb,txt,xml,yml}}'] + Dir['bin/*']).map.sort"
s.files = ["bin/tourbus",
"bin/tourwatch",
"examples/contact_app/README.rdoc",
"examples/contact_app/contact_app.rb",
"examples/contact_app/tours/simple.rb",
"examples/contact_app/tours/tourbus.yml",
"lib/common.rb",
"lib/runner.rb",
"lib/tour.rb",
"lib/tour_bus.rb",
"lib/tour_watch.rb"]
end