GICodeWarrior-ci_reporter 1.6.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -0
- data/History.txt +110 -0
- data/LICENSE.txt +21 -0
- data/README.txt +66 -0
- data/Rakefile +90 -0
- data/VERSION +1 -0
- data/acceptance/rspec_example_spec.rb +18 -0
- data/acceptance/test_unit_example_test.rb +17 -0
- data/acceptance/verification_spec.rb +64 -0
- data/lib/ci/reporter/core.rb +6 -0
- data/lib/ci/reporter/rake/rspec.rb +23 -0
- data/lib/ci/reporter/rake/rspec_loader.rb +6 -0
- data/lib/ci/reporter/rake/test_unit.rb +12 -0
- data/lib/ci/reporter/rake/test_unit_loader.rb +21 -0
- data/lib/ci/reporter/report_manager.rb +23 -0
- data/lib/ci/reporter/rspec.rb +127 -0
- data/lib/ci/reporter/test_suite.rb +147 -0
- data/lib/ci/reporter/test_unit.rb +124 -0
- data/lib/ci/reporter/version.rb +5 -0
- data/spec/ci/reporter/output_capture_spec.rb +57 -0
- data/spec/ci/reporter/rake/rake_tasks_spec.rb +73 -0
- data/spec/ci/reporter/report_manager_spec.rb +39 -0
- data/spec/ci/reporter/rspec_spec.rb +108 -0
- data/spec/ci/reporter/test_suite_spec.rb +150 -0
- data/spec/ci/reporter/test_unit_spec.rb +152 -0
- data/spec/spec_helper.rb +18 -0
- data/stub.rake +13 -0
- data/tasks/ci_reporter.rake +16 -0
- metadata +87 -0
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
# (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
|
2
|
+
# See the file LICENSE.txt included with the distribution for
|
3
|
+
# software license details.
|
4
|
+
|
5
|
+
require 'rubygems'
|
6
|
+
gem 'rspec'
|
7
|
+
require 'spec'
|
8
|
+
|
9
|
+
unless defined?(CI_REPORTER_LIB)
|
10
|
+
CI_REPORTER_LIB = File.expand_path(File.dirname(__FILE__) + "/../lib")
|
11
|
+
$: << CI_REPORTER_LIB
|
12
|
+
end
|
13
|
+
|
14
|
+
require 'ci/reporter/core'
|
15
|
+
require 'ci/reporter/test_unit'
|
16
|
+
require 'ci/reporter/rspec'
|
17
|
+
|
18
|
+
REPORTS_DIR = File.dirname(__FILE__) + "/reports" unless defined?(REPORTS_DIR)
|
data/stub.rake
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
|
2
|
+
# See the file LICENSE.txt included with the distribution for
|
3
|
+
# software license details.
|
4
|
+
#
|
5
|
+
# Use this stub rakefile as a wrapper around a regular Rakefile. Run in the
|
6
|
+
# same directory as the real Rakefile.
|
7
|
+
#
|
8
|
+
# rake -f /path/to/ci_reporter/lib/ci/reporter/rake/stub.rake ci:setup:rspec default
|
9
|
+
#
|
10
|
+
|
11
|
+
load File.dirname(__FILE__) + '/lib/ci/reporter/rake/rspec.rb'
|
12
|
+
load File.dirname(__FILE__) + '/lib/ci/reporter/rake/test_unit.rb'
|
13
|
+
load 'Rakefile'
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
|
2
|
+
# See the file LICENSE.txt included with the distribution for
|
3
|
+
# software license details.
|
4
|
+
|
5
|
+
begin
|
6
|
+
gem 'ci_reporter'
|
7
|
+
rescue Gem::LoadError
|
8
|
+
$: << File.dirname(__FILE__) + "/../lib"
|
9
|
+
end
|
10
|
+
require 'ci/reporter/rake/rspec'
|
11
|
+
require 'ci/reporter/rake/test_unit'
|
12
|
+
|
13
|
+
namespace :ci do
|
14
|
+
task :setup_rspec => "ci:setup:rspec"
|
15
|
+
task :setup_testunit => "ci:setup:testunit"
|
16
|
+
end
|
metadata
ADDED
@@ -0,0 +1,87 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: GICodeWarrior-ci_reporter
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.6.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Nick Sieger
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-09-03 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description:
|
17
|
+
email: nick@nicksieger.com
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files:
|
23
|
+
- LICENSE.txt
|
24
|
+
- README.txt
|
25
|
+
files:
|
26
|
+
- .gitignore
|
27
|
+
- History.txt
|
28
|
+
- LICENSE.txt
|
29
|
+
- README.txt
|
30
|
+
- Rakefile
|
31
|
+
- VERSION
|
32
|
+
- acceptance/rspec_example_spec.rb
|
33
|
+
- acceptance/test_unit_example_test.rb
|
34
|
+
- acceptance/verification_spec.rb
|
35
|
+
- lib/ci/reporter/core.rb
|
36
|
+
- lib/ci/reporter/rake/rspec.rb
|
37
|
+
- lib/ci/reporter/rake/rspec_loader.rb
|
38
|
+
- lib/ci/reporter/rake/test_unit.rb
|
39
|
+
- lib/ci/reporter/rake/test_unit_loader.rb
|
40
|
+
- lib/ci/reporter/report_manager.rb
|
41
|
+
- lib/ci/reporter/rspec.rb
|
42
|
+
- lib/ci/reporter/test_suite.rb
|
43
|
+
- lib/ci/reporter/test_unit.rb
|
44
|
+
- lib/ci/reporter/version.rb
|
45
|
+
- spec/ci/reporter/output_capture_spec.rb
|
46
|
+
- spec/ci/reporter/rake/rake_tasks_spec.rb
|
47
|
+
- spec/ci/reporter/report_manager_spec.rb
|
48
|
+
- spec/ci/reporter/rspec_spec.rb
|
49
|
+
- spec/ci/reporter/test_suite_spec.rb
|
50
|
+
- spec/ci/reporter/test_unit_spec.rb
|
51
|
+
- spec/spec_helper.rb
|
52
|
+
- stub.rake
|
53
|
+
- tasks/ci_reporter.rake
|
54
|
+
has_rdoc: false
|
55
|
+
homepage: http://github.com/nicksieger/ci_reporter
|
56
|
+
post_install_message:
|
57
|
+
rdoc_options:
|
58
|
+
- --charset=UTF-8
|
59
|
+
require_paths:
|
60
|
+
- lib
|
61
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
62
|
+
requirements:
|
63
|
+
- - ">="
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: "0"
|
66
|
+
version:
|
67
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
68
|
+
requirements:
|
69
|
+
- - ">="
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: "0"
|
72
|
+
version:
|
73
|
+
requirements: []
|
74
|
+
|
75
|
+
rubyforge_project:
|
76
|
+
rubygems_version: 1.2.0
|
77
|
+
signing_key:
|
78
|
+
specification_version: 3
|
79
|
+
summary: Generate reams of XML for use with continuous integration systems.
|
80
|
+
test_files:
|
81
|
+
- spec/spec_helper.rb
|
82
|
+
- spec/ci/reporter/test_unit_spec.rb
|
83
|
+
- spec/ci/reporter/report_manager_spec.rb
|
84
|
+
- spec/ci/reporter/rake/rake_tasks_spec.rb
|
85
|
+
- spec/ci/reporter/rspec_spec.rb
|
86
|
+
- spec/ci/reporter/test_suite_spec.rb
|
87
|
+
- spec/ci/reporter/output_capture_spec.rb
|