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.
Files changed (6) hide show
  1. data/README.md +2 -0
  2. data/Rakefile +1 -2
  3. data/VERSION +1 -1
  4. data/hansel.gemspec +1 -1
  5. data/lib/hansel.rb +3 -3
  6. 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 => ['test/**/*_test.rb',
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.2
1
+ 0.2.3
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.2"
8
+ s.version = "0.2.3"
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"]
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 'lib/hansel/formatting/yaml_formatter.rb'
9
- require 'lib/hansel/formatting/csv_formatter.rb'
10
- require 'lib/hansel/formatting/octave_formatter.rb'
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'
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 2
8
- - 2
9
- version: 0.2.2
8
+ - 3
9
+ version: 0.2.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - Paul Mylchreest