ci_reporter 1.5 → 1.5.1

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,7 @@
1
+ == 1.5.1
2
+
3
+ - Fix silly load-path error that some had been seeing
4
+
1
5
  == 1.5
2
6
 
3
7
  - Support for RSpec 1.1.1 example groups (which broke ci_reporter 1.4)
@@ -2,5 +2,5 @@
2
2
  # See the file LICENSE.txt included with the distribution for
3
3
  # software license details.
4
4
 
5
- $: << File.dirname(__FILE__) + "/../../../lib"
5
+ $: << File.dirname(__FILE__) + "/../../.."
6
6
  require 'ci/reporter/rspec'
@@ -2,7 +2,7 @@
2
2
  # See the file LICENSE.txt included with the distribution for
3
3
  # software license details.
4
4
 
5
- $: << File.dirname(__FILE__) + "/../../../lib"
5
+ $: << File.dirname(__FILE__) + "/../../.."
6
6
  require 'ci/reporter/test_unit'
7
7
 
8
8
  module Test #:nodoc:all
@@ -1,5 +1,5 @@
1
1
  module CI
2
2
  module Reporter
3
- VERSION = "1.5"
3
+ VERSION = "1.5.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,33 +1,37 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.9.4
3
- specification_version: 1
4
2
  name: ci_reporter
5
3
  version: !ruby/object:Gem::Version
6
- version: "1.5"
7
- date: 2008-01-12 00:00:00 -06:00
8
- summary: CI::Reporter allows you to generate reams of XML for use with continuous integration systems.
9
- require_paths:
10
- - lib
11
- email: nick@nicksieger.com
12
- homepage: http://caldersphere.rubyforge.org/ci_reporter
13
- rubyforge_project: caldersphere
14
- description: CI::Reporter is an add-on to Test::Unit and RSpec that allows you to generate XML reports of your test and/or spec runs. The resulting files can be read by a continuous integration system that understands Ant's JUnit report XML format, thus allowing your CI system to track test/spec successes and failures.
15
- autorequire:
16
- default_executable:
17
- bindir: bin
18
- has_rdoc: true
19
- required_ruby_version: !ruby/object:Gem::Version::Requirement
20
- requirements:
21
- - - ">"
22
- - !ruby/object:Gem::Version
23
- version: 0.0.0
24
- version:
4
+ version: 1.5.1
25
5
  platform: ruby
26
- signing_key:
27
- cert_chain:
28
- post_install_message:
29
6
  authors:
30
7
  - Nick Sieger
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-02-06 00:00:00 -08:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: builder
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 2.1.2
23
+ version:
24
+ description: CI::Reporter is an add-on to Test::Unit and RSpec that allows you to generate XML reports of your test and/or spec runs. The resulting files can be read by a continuous integration system that understands Ant's JUnit report XML format, thus allowing your CI system to track test/spec successes and failures.
25
+ email: nick@nicksieger.com
26
+ executables: []
27
+
28
+ extensions: []
29
+
30
+ extra_rdoc_files:
31
+ - History.txt
32
+ - Manifest.txt
33
+ - README.txt
34
+ - LICENSE.txt
31
35
  files:
32
36
  - History.txt
33
37
  - Manifest.txt
@@ -53,6 +57,33 @@ files:
53
57
  - spec/ci/reporter/test_unit_spec.rb
54
58
  - spec/spec_helper.rb
55
59
  - tasks/ci_reporter.rake
60
+ has_rdoc: true
61
+ homepage: http://caldersphere.rubyforge.org/ci_reporter
62
+ post_install_message:
63
+ rdoc_options:
64
+ - --main
65
+ - README.txt
66
+ require_paths:
67
+ - lib
68
+ required_ruby_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: "0"
73
+ version:
74
+ required_rubygems_version: !ruby/object:Gem::Requirement
75
+ requirements:
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ version: "0"
79
+ version:
80
+ requirements: []
81
+
82
+ rubyforge_project: caldersphere
83
+ rubygems_version: 1.0.1
84
+ signing_key:
85
+ specification_version: 2
86
+ summary: CI::Reporter allows you to generate reams of XML for use with continuous integration systems.
56
87
  test_files:
57
88
  - spec/ci/reporter/output_capture_spec.rb
58
89
  - spec/ci/reporter/rake/rake_tasks_spec.rb
@@ -60,27 +91,3 @@ test_files:
60
91
  - spec/ci/reporter/rspec_spec.rb
61
92
  - spec/ci/reporter/test_suite_spec.rb
62
93
  - spec/ci/reporter/test_unit_spec.rb
63
- rdoc_options:
64
- - --main
65
- - README.txt
66
- extra_rdoc_files:
67
- - History.txt
68
- - Manifest.txt
69
- - README.txt
70
- - LICENSE.txt
71
- executables: []
72
-
73
- extensions: []
74
-
75
- requirements: []
76
-
77
- dependencies:
78
- - !ruby/object:Gem::Dependency
79
- name: builder
80
- version_requirement:
81
- version_requirements: !ruby/object:Gem::Version::Requirement
82
- requirements:
83
- - - ">="
84
- - !ruby/object:Gem::Version
85
- version: 2.1.2
86
- version: