brasten-ci_reporter 1.6.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,21 @@
1
+ # Copyright (c) 2006-2010 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
+ begin
7
+ require 'rspec'
8
+ rescue LoadError
9
+ require 'spec'
10
+ end
11
+
12
+ unless defined?(CI_REPORTER_LIB)
13
+ CI_REPORTER_LIB = File.expand_path(File.dirname(__FILE__) + "/../lib")
14
+ $: << CI_REPORTER_LIB
15
+ end
16
+
17
+ require 'ci/reporter/core'
18
+ require 'ci/reporter/test_unit'
19
+ require 'ci/reporter/rspec'
20
+
21
+ REPORTS_DIR = File.dirname(__FILE__) + "/reports" unless defined?(REPORTS_DIR)
data/stub.rake ADDED
@@ -0,0 +1,14 @@
1
+ # Copyright (c) 2006-2010 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/cucumber.rb'
13
+ load File.dirname(__FILE__) + '/lib/ci/reporter/rake/test_unit.rb'
14
+ load 'Rakefile'
@@ -0,0 +1,18 @@
1
+ # Copyright (c) 2006-2010 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/cucumber'
12
+ require 'ci/reporter/rake/test_unit'
13
+
14
+ namespace :ci do
15
+ task :setup_rspec => "ci:setup:rspec"
16
+ task :setup_cucumber => "ci:setup:cucumber"
17
+ task :setup_testunit => "ci:setup:testunit"
18
+ end
metadata ADDED
@@ -0,0 +1,119 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: brasten-ci_reporter
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 1.6.5
6
+ platform: ruby
7
+ authors:
8
+ - Nick Sieger
9
+ - Brasten Sager
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+
14
+ date: 2011-05-12 00:00:00 Z
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: builder
18
+ prerelease: false
19
+ requirement: &id001 !ruby/object:Gem::Requirement
20
+ none: false
21
+ requirements:
22
+ - - ">="
23
+ - !ruby/object:Gem::Version
24
+ version: 2.1.2
25
+ type: :runtime
26
+ version_requirements: *id001
27
+ - !ruby/object:Gem::Dependency
28
+ name: rubyforge
29
+ prerelease: false
30
+ requirement: &id002 !ruby/object:Gem::Requirement
31
+ none: false
32
+ requirements:
33
+ - - ">="
34
+ - !ruby/object:Gem::Version
35
+ version: 2.0.4
36
+ type: :development
37
+ version_requirements: *id002
38
+ description: CI::Reporter is an add-on to Test::Unit, RSpec and Cucumber that allows you to generate XML reports of your test, spec and/or feature 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.
39
+ email:
40
+ - nick@nicksieger.com
41
+ - brasten@brasten.me
42
+ executables: []
43
+
44
+ extensions: []
45
+
46
+ extra_rdoc_files:
47
+ - History.txt
48
+ - Manifest.txt
49
+ - README.txt
50
+ - LICENSE.txt
51
+ files:
52
+ - History.txt
53
+ - Manifest.txt
54
+ - README.txt
55
+ - LICENSE.txt
56
+ - Rakefile
57
+ - stub.rake
58
+ - lib/ci/reporter/core.rb
59
+ - lib/ci/reporter/cucumber.rb
60
+ - lib/ci/reporter/rake/cucumber.rb
61
+ - lib/ci/reporter/rake/cucumber_loader.rb
62
+ - lib/ci/reporter/rake/rspec.rb
63
+ - lib/ci/reporter/rake/rspec_loader.rb
64
+ - lib/ci/reporter/rake/test_unit.rb
65
+ - lib/ci/reporter/rake/test_unit_loader.rb
66
+ - lib/ci/reporter/rake/utils.rb
67
+ - lib/ci/reporter/report_manager.rb
68
+ - lib/ci/reporter/rspec.rb
69
+ - lib/ci/reporter/test_suite.rb
70
+ - lib/ci/reporter/test_unit.rb
71
+ - lib/ci/reporter/version.rb
72
+ - spec/ci/reporter/cucumber_spec.rb
73
+ - spec/ci/reporter/output_capture_spec.rb
74
+ - spec/ci/reporter/rake/rake_tasks_spec.rb
75
+ - spec/ci/reporter/report_manager_spec.rb
76
+ - spec/ci/reporter/rspec_spec.rb
77
+ - spec/ci/reporter/test_suite_spec.rb
78
+ - spec/ci/reporter/test_unit_spec.rb
79
+ - spec/spec_helper.rb
80
+ - tasks/ci_reporter.rake
81
+ homepage: http://caldersphere.rubyforge.org/ci_reporter
82
+ licenses: []
83
+
84
+ post_install_message:
85
+ rdoc_options:
86
+ - --main
87
+ - README.txt
88
+ - -SHN
89
+ - -f
90
+ - darkfish
91
+ require_paths:
92
+ - lib
93
+ required_ruby_version: !ruby/object:Gem::Requirement
94
+ none: false
95
+ requirements:
96
+ - - ">="
97
+ - !ruby/object:Gem::Version
98
+ version: "0"
99
+ required_rubygems_version: !ruby/object:Gem::Requirement
100
+ none: false
101
+ requirements:
102
+ - - ">="
103
+ - !ruby/object:Gem::Version
104
+ version: "0"
105
+ requirements: []
106
+
107
+ rubyforge_project:
108
+ rubygems_version: 1.7.2
109
+ signing_key:
110
+ specification_version: 3
111
+ summary: CI::Reporter allows you to generate reams of XML for use with continuous integration systems.
112
+ test_files:
113
+ - spec/ci/reporter/cucumber_spec.rb
114
+ - spec/ci/reporter/output_capture_spec.rb
115
+ - spec/ci/reporter/rake/rake_tasks_spec.rb
116
+ - spec/ci/reporter/report_manager_spec.rb
117
+ - spec/ci/reporter/rspec_spec.rb
118
+ - spec/ci/reporter/test_suite_spec.rb
119
+ - spec/ci/reporter/test_unit_spec.rb