hansel 0.2.2 → 0.2.3
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 +2 -0
- data/Rakefile +1 -2
- data/VERSION +1 -1
- data/hansel.gemspec +1 -1
- data/lib/hansel.rb +3 -3
- metadata +2 -2
data/README.md
CHANGED
|
@@ -10,6 +10,8 @@ a job queue file, in a yaml format, run httperf with each job
|
|
|
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
|
+
gem install rubygems-update
|
|
14
|
+
update_rubygems
|
|
13
15
|
|
|
14
16
|
On MacOS X using homebrew:
|
|
15
17
|
|
data/Rakefile
CHANGED
|
@@ -64,8 +64,7 @@ MetricFu::Configuration.run do |config|
|
|
|
64
64
|
config.churn = { :start_date => "1 year ago", :minimum_churn_count => 10}
|
|
65
65
|
|
|
66
66
|
config.rcov = { :environment => 'test',
|
|
67
|
-
:test_files => ['
|
|
68
|
-
'spec/**/*_spec.rb'],
|
|
67
|
+
:test_files => ['spec/**/*_spec.rb'],
|
|
69
68
|
:rcov_opts => ["--sort coverage",
|
|
70
69
|
"--no-html",
|
|
71
70
|
"--text-coverage",
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.3
|
data/hansel.gemspec
CHANGED
data/lib/hansel.rb
CHANGED
|
@@ -5,9 +5,9 @@ $:.unshift File.dirname(__FILE__) + "/../lib/hansel"
|
|
|
5
5
|
|
|
6
6
|
require 'arg_parser'
|
|
7
7
|
require 'formatting/formatting'
|
|
8
|
-
require '
|
|
9
|
-
require '
|
|
10
|
-
require '
|
|
8
|
+
require 'formatting/yaml_formatter.rb'
|
|
9
|
+
require 'formatting/csv_formatter.rb'
|
|
10
|
+
require 'formatting/octave_formatter.rb'
|
|
11
11
|
require 'httperf/httperf'
|
|
12
12
|
require 'httperf_result'
|
|
13
13
|
require 'httperf_result_parser'
|