ci_reporter 1.2 → 1.2.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 +4 -0
- data/LICENSE.txt +21 -0
- data/Manifest.txt +1 -0
- data/README.txt +5 -1
- data/Rakefile +2 -2
- data/lib/ci/reporter/core.rb +4 -0
- data/lib/ci/reporter/rake/rspec.rb +4 -0
- data/lib/ci/reporter/rake/rspec_loader.rb +4 -0
- data/lib/ci/reporter/rake/test_unit.rb +4 -0
- data/lib/ci/reporter/rake/test_unit_loader.rb +4 -0
- data/lib/ci/reporter/report_manager.rb +4 -0
- data/lib/ci/reporter/rspec.rb +4 -0
- data/lib/ci/reporter/test_suite.rb +4 -0
- data/lib/ci/reporter/test_unit.rb +4 -0
- data/spec/ci/reporter/output_capture_spec.rb +4 -0
- data/spec/ci/reporter/report_manager_spec.rb +4 -0
- data/spec/ci/reporter/rspec_spec.rb +4 -0
- data/spec/ci/reporter/test_suite_spec.rb +4 -0
- data/spec/ci/reporter/test_unit_spec.rb +4 -0
- data/spec/spec_helper.rb +4 -0
- data/tasks/ci_reporter.rake +4 -0
- metadata +2 -1
data/History.txt
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
== 1.2.1
|
2
|
+
|
3
|
+
- Add license and copyright information (finally)
|
4
|
+
|
1
5
|
== 1.2
|
2
6
|
|
3
7
|
- Capture standard output and standard error during each individual test suite and include in the XML file in system-out and system-err elements, respectively (Tracker#9054[http://rubyforge.org/tracker/index.php?func=detail&aid=9054&group_id=2857&atid=11007])
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
|
2
|
+
#
|
3
|
+
# Permission is hereby granted, free of charge, to any person
|
4
|
+
# obtaining a copy of this software and associated documentation files
|
5
|
+
# (the "Software"), to deal in the Software without restriction,
|
6
|
+
# including without limitation the rights to use, copy, modify, merge,
|
7
|
+
# publish, distribute, sublicense, and/or sell copies of the Software,
|
8
|
+
# and to permit persons to whom the Software is furnished to do so,
|
9
|
+
# subject to the following conditions:
|
10
|
+
#
|
11
|
+
# The above copyright notice and this permission notice shall be
|
12
|
+
# included in all copies or substantial portions of the Software.
|
13
|
+
#
|
14
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
18
|
+
# BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
19
|
+
# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
20
|
+
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
# SOFTWARE.
|
data/Manifest.txt
CHANGED
data/README.txt
CHANGED
@@ -40,4 +40,8 @@ If for some reason you can't use the above technique to inject CI::Reporter (e.g
|
|
40
40
|
--require GEM_PATH/lib/ci/reporter/rake/rspec_loader
|
41
41
|
--format CI::Reporter::RSpec
|
42
42
|
|
43
|
-
There's a bit of a chicken and egg problem because rubygems needs to be loaded before you can require any CI::Reporter files. If you cringe hard-coding a full path to a specific version of the gem, you can also copy the +rspec_loader+ file into your project and require it directly -- the contents are version-agnostic and are not likely to change in future releases.
|
43
|
+
There's a bit of a chicken and egg problem because rubygems needs to be loaded before you can require any CI::Reporter files. If you cringe hard-coding a full path to a specific version of the gem, you can also copy the +rspec_loader+ file into your project and require it directly -- the contents are version-agnostic and are not likely to change in future releases.
|
44
|
+
|
45
|
+
== License
|
46
|
+
|
47
|
+
This software is released under an MIT license. For details, see the LICENSE.txt file included with the distribution. The software is copyright (c) 2006-2007 Nick Sieger <nicksieger@gmail.com>.
|
data/Rakefile
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
require 'spec/rake/spectask'
|
2
2
|
require 'hoe'
|
3
3
|
|
4
|
-
MANIFEST = FileList["History.txt", "Manifest.txt", "README.txt", "Rakefile",
|
4
|
+
MANIFEST = FileList["History.txt", "Manifest.txt", "README.txt", "LICENSE.txt", "Rakefile",
|
5
5
|
"lib/**/*.rb", "spec/**/*.rb", "tasks/**/*.rake"]
|
6
6
|
|
7
|
-
Hoe.new("ci_reporter", "1.2") do |p|
|
7
|
+
Hoe.new("ci_reporter", "1.2.1") do |p|
|
8
8
|
p.rubyforge_name = "caldersphere"
|
9
9
|
p.url = "http://caldersphere.rubyforge.org/ci_reporter"
|
10
10
|
p.author = "Nick Sieger"
|
data/lib/ci/reporter/core.rb
CHANGED
data/lib/ci/reporter/rspec.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
data/tasks/ci_reporter.rake
CHANGED
metadata
CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.2
|
|
3
3
|
specification_version: 1
|
4
4
|
name: ci_reporter
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version:
|
6
|
+
version: 1.2.1
|
7
7
|
date: 2007-03-25 00:00:00 -05:00
|
8
8
|
summary: CI::Reporter allows you to generate reams of XML for use with continuous integration systems.
|
9
9
|
require_paths:
|
@@ -32,6 +32,7 @@ files:
|
|
32
32
|
- History.txt
|
33
33
|
- Manifest.txt
|
34
34
|
- README.txt
|
35
|
+
- LICENSE.txt
|
35
36
|
- Rakefile
|
36
37
|
- lib/ci/reporter/core.rb
|
37
38
|
- lib/ci/reporter/report_manager.rb
|