hansel 0.2.4 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/{README.md → README.rdoc} +10 -10
- data/VERSION +1 -1
- data/hansel.gemspec +3 -3
- metadata +4 -4
data/{README.md → README.rdoc}
RENAMED
@@ -1,16 +1,17 @@
|
|
1
|
-
|
1
|
+
= hansel
|
2
2
|
|
3
3
|
Hansel is a pure ruby driver for httperf for automated load and performance testing. It will load
|
4
4
|
a job queue file, in a yaml format, run httperf with each job
|
5
5
|
|
6
|
-
|
6
|
+
= Installing Httperf and Hansel
|
7
7
|
|
8
|
-
|
8
|
+
== Httperf
|
9
9
|
|
10
10
|
For Linux (Ubuntu):
|
11
11
|
|
12
12
|
apt-get update && apt-get -y install rubygems httperf ruby1.8-dev libcurl4-gnutls-dev
|
13
13
|
gem install rubygems-update
|
14
|
+
export PATH=$PATH:/var/lib/gems/1.8/bin
|
14
15
|
update_rubygems
|
15
16
|
|
16
17
|
On MacOS X using homebrew:
|
@@ -18,14 +19,14 @@ a job queue file, in a yaml format, run httperf with each job
|
|
18
19
|
brew install httperf
|
19
20
|
|
20
21
|
finally:
|
21
|
-
|
22
|
+
|
22
23
|
gem install hansel
|
23
24
|
|
24
|
-
|
25
|
+
== Optional -- Installing Octave using macports (warning: long!)
|
25
26
|
|
26
27
|
sudo port install octave
|
27
28
|
|
28
|
-
|
29
|
+
= Example usage
|
29
30
|
|
30
31
|
Create a job queue file in ~/.hansel/jobs.yml:
|
31
32
|
|
@@ -46,7 +47,6 @@ Create a job queue file in ~/.hansel/jobs.yml:
|
|
46
47
|
|
47
48
|
and run Hansel
|
48
49
|
|
49
|
-
export PATH=$PATH:/var/lib/gems/1.8/bin
|
50
50
|
hansel --verbose --format=octave
|
51
51
|
|
52
52
|
By default, the output is written into the ~/hansel_output directory. When the octave format is
|
@@ -86,7 +86,7 @@ output from the previous job:
|
|
86
86
|
|
87
87
|
Run octave on it will produce graph as a png file.
|
88
88
|
|
89
|
-
|
89
|
+
== Note on Patches/Pull Requests
|
90
90
|
|
91
91
|
* Fork the project.
|
92
92
|
* Make your feature addition or bug fix.
|
@@ -96,11 +96,11 @@ Run octave on it will produce graph as a png file.
|
|
96
96
|
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
97
97
|
* Send me a pull request. Bonus points for topic branches.
|
98
98
|
|
99
|
-
|
99
|
+
== References
|
100
100
|
|
101
101
|
"HTTP Perforance Testing with httperf":http://agiletesting.blogspot.com/2005/04/http-performance-testing-with-httperf.html
|
102
102
|
"Perforance vs Load Testing":http://agiletesting.blogspot.com/2005/04/more-on-performance-vs-load-testing.html
|
103
103
|
|
104
|
-
|
104
|
+
== Copyright
|
105
105
|
|
106
106
|
Copyright (c) 2010 Paul Mylchreest. See LICENSE for details.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.5
|
data/hansel.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{hansel}
|
8
|
-
s.version = "0.2.
|
8
|
+
s.version = "0.2.5"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Paul Mylchreest"]
|
@@ -16,13 +16,13 @@ Gem::Specification.new do |s|
|
|
16
16
|
s.executables = ["hansel"]
|
17
17
|
s.extra_rdoc_files = [
|
18
18
|
"LICENSE",
|
19
|
-
"README.
|
19
|
+
"README.rdoc"
|
20
20
|
]
|
21
21
|
s.files = [
|
22
22
|
".document",
|
23
23
|
".gitignore",
|
24
24
|
"LICENSE",
|
25
|
-
"README.
|
25
|
+
"README.rdoc",
|
26
26
|
"Rakefile",
|
27
27
|
"VERSION",
|
28
28
|
"bin/hansel",
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 2
|
8
|
-
-
|
9
|
-
version: 0.2.
|
8
|
+
- 5
|
9
|
+
version: 0.2.5
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Paul Mylchreest
|
@@ -73,12 +73,12 @@ extensions: []
|
|
73
73
|
|
74
74
|
extra_rdoc_files:
|
75
75
|
- LICENSE
|
76
|
-
- README.
|
76
|
+
- README.rdoc
|
77
77
|
files:
|
78
78
|
- .document
|
79
79
|
- .gitignore
|
80
80
|
- LICENSE
|
81
|
-
- README.
|
81
|
+
- README.rdoc
|
82
82
|
- Rakefile
|
83
83
|
- VERSION
|
84
84
|
- bin/hansel
|