minitest-ci 3.0.1 → 3.0.2

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/History.txt CHANGED
@@ -1,3 +1,13 @@
1
+ === 3.0.2 / 2013-08-19
2
+
3
+ * 4 unknowns:
4
+
5
+ * Fix --ci-dir option.
6
+ * Fix --ci-dir option.
7
+ * Merge pull request #11 from zcrowell/patch-1
8
+ * Trying to specify TESTOPTS="--ci-dir=foo" results in OptionParser::NeedlessArgument because --ci-dir is missing a mandatory argument.
9
+
10
+
1
11
  === 3.0.1 / 2013-07-12
2
12
 
3
13
  * 1 unknown:
data/lib/minitest/ci.rb CHANGED
@@ -4,7 +4,7 @@ require 'cgi'
4
4
  module Minitest
5
5
  class Ci
6
6
 
7
- VERSION = '3.0.1'
7
+ VERSION = '3.0.2'
8
8
 
9
9
  class << self
10
10
 
@@ -7,7 +7,7 @@ module Minitest
7
7
  end
8
8
 
9
9
  def self.plugin_ci_options opts, options
10
- opts.on "--ci-dir", "Set the CI report dir. Default to #{Ci.report_dir}" do |dir|
10
+ opts.on "--ci-dir DIR", "Set the CI report dir. Default to #{Ci.report_dir}" do |dir|
11
11
  options[:ci_dir] = dir
12
12
  end
13
13
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minitest-ci
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 3.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-07-12 00:00:00.000000000 Z
12
+ date: 2013-08-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: minitest