dimkiriyenko-ci_reporter 1.6.4

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)
@@ -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,140 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dimkiriyenko-ci_reporter
3
+ version: !ruby/object:Gem::Version
4
+ hash: 7
5
+ prerelease:
6
+ segments:
7
+ - 1
8
+ - 6
9
+ - 4
10
+ version: 1.6.4
11
+ platform: ruby
12
+ authors:
13
+ - Nick Sieger
14
+ - Dmitriy Kiriyenko
15
+ autorequire:
16
+ bindir: bin
17
+ cert_chain: []
18
+
19
+ date: 2011-04-01 00:00:00 +03:00
20
+ default_executable:
21
+ dependencies:
22
+ - !ruby/object:Gem::Dependency
23
+ name: builder
24
+ prerelease: false
25
+ requirement: &id001 !ruby/object:Gem::Requirement
26
+ none: false
27
+ requirements:
28
+ - - ">="
29
+ - !ruby/object:Gem::Version
30
+ hash: 15
31
+ segments:
32
+ - 2
33
+ - 1
34
+ - 2
35
+ version: 2.1.2
36
+ type: :runtime
37
+ version_requirements: *id001
38
+ - !ruby/object:Gem::Dependency
39
+ name: rubyforge
40
+ prerelease: false
41
+ requirement: &id002 !ruby/object:Gem::Requirement
42
+ none: false
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ hash: 7
47
+ segments:
48
+ - 2
49
+ - 0
50
+ - 4
51
+ version: 2.0.4
52
+ type: :development
53
+ version_requirements: *id002
54
+ 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.
55
+ email: nick@nicksieger.com, dmitriy.kiriyenko@gmail.com
56
+ executables: []
57
+
58
+ extensions: []
59
+
60
+ extra_rdoc_files:
61
+ - History.txt
62
+ - Manifest.txt
63
+ - README.txt
64
+ - LICENSE.txt
65
+ files:
66
+ - History.txt
67
+ - Manifest.txt
68
+ - README.txt
69
+ - LICENSE.txt
70
+ - Rakefile
71
+ - stub.rake
72
+ - lib/ci/reporter/core.rb
73
+ - lib/ci/reporter/cucumber.rb
74
+ - lib/ci/reporter/rake/cucumber.rb
75
+ - lib/ci/reporter/rake/cucumber_loader.rb
76
+ - lib/ci/reporter/rake/rspec.rb
77
+ - lib/ci/reporter/rake/rspec_loader.rb
78
+ - lib/ci/reporter/rake/test_unit.rb
79
+ - lib/ci/reporter/rake/test_unit_loader.rb
80
+ - lib/ci/reporter/rake/utils.rb
81
+ - lib/ci/reporter/report_manager.rb
82
+ - lib/ci/reporter/rspec.rb
83
+ - lib/ci/reporter/test_suite.rb
84
+ - lib/ci/reporter/test_unit.rb
85
+ - lib/ci/reporter/version.rb
86
+ - spec/ci/reporter/cucumber_spec.rb
87
+ - spec/ci/reporter/output_capture_spec.rb
88
+ - spec/ci/reporter/rake/rake_tasks_spec.rb
89
+ - spec/ci/reporter/report_manager_spec.rb
90
+ - spec/ci/reporter/rspec_spec.rb
91
+ - spec/ci/reporter/test_suite_spec.rb
92
+ - spec/ci/reporter/test_unit_spec.rb
93
+ - spec/spec_helper.rb
94
+ - tasks/ci_reporter.rake
95
+ has_rdoc: true
96
+ homepage: https://github.com/dmitriy-kiriyenko/ci_reporter
97
+ licenses: []
98
+
99
+ post_install_message:
100
+ rdoc_options:
101
+ - --main
102
+ - README.txt
103
+ - -SHN
104
+ - -f
105
+ - darkfish
106
+ require_paths:
107
+ - lib
108
+ required_ruby_version: !ruby/object:Gem::Requirement
109
+ none: false
110
+ requirements:
111
+ - - ">="
112
+ - !ruby/object:Gem::Version
113
+ hash: 3
114
+ segments:
115
+ - 0
116
+ version: "0"
117
+ required_rubygems_version: !ruby/object:Gem::Requirement
118
+ none: false
119
+ requirements:
120
+ - - ">="
121
+ - !ruby/object:Gem::Version
122
+ hash: 3
123
+ segments:
124
+ - 0
125
+ version: "0"
126
+ requirements: []
127
+
128
+ rubyforge_project: caldersphere
129
+ rubygems_version: 1.5.2
130
+ signing_key:
131
+ specification_version: 3
132
+ summary: CI::Reporter allows you to generate reams of XML for use with continuous integration systems.
133
+ test_files:
134
+ - spec/ci/reporter/cucumber_spec.rb
135
+ - spec/ci/reporter/output_capture_spec.rb
136
+ - spec/ci/reporter/rake/rake_tasks_spec.rb
137
+ - spec/ci/reporter/report_manager_spec.rb
138
+ - spec/ci/reporter/rspec_spec.rb
139
+ - spec/ci/reporter/test_suite_spec.rb
140
+ - spec/ci/reporter/test_unit_spec.rb