rspec-extra-formatters 0.2 → 0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/j_unit_formatter.rb +1 -0
- data/lib/tap_formatter.rb +1 -0
- metadata +7 -5
@@ -0,0 +1 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + "/rspec-extra-formatters/junit_formatter.rb")
|
@@ -0,0 +1 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + "/rspec-extra-formatters/tap_formatter")
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: rspec-extra-formatters
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: "0.
|
5
|
+
version: "0.3"
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Diego Souza
|
@@ -35,11 +35,13 @@ extra_rdoc_files:
|
|
35
35
|
- LICENSE
|
36
36
|
- README.rst
|
37
37
|
files:
|
38
|
-
- lib/
|
38
|
+
- lib/tap_formatter.rb
|
39
39
|
- lib/rspec-extra-formatters/junit_formatter.rb
|
40
|
+
- lib/rspec-extra-formatters/tap_formatter.rb
|
41
|
+
- lib/j_unit_formatter.rb
|
40
42
|
- lib/rspec-extra-formatters.rb
|
41
|
-
- spec/rspec-extra-formatters/junit_formatter_spec.rb
|
42
43
|
- spec/rspec-extra-formatters/tap_formatter_spec.rb
|
44
|
+
- spec/rspec-extra-formatters/junit_formatter_spec.rb
|
43
45
|
- spec/spec_helper.rb
|
44
46
|
- LICENSE
|
45
47
|
- README.rst
|
@@ -67,11 +69,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
67
69
|
requirements: []
|
68
70
|
|
69
71
|
rubyforge_project:
|
70
|
-
rubygems_version: 1.
|
72
|
+
rubygems_version: 1.5.0
|
71
73
|
signing_key:
|
72
74
|
specification_version: 3
|
73
75
|
summary: TAP and JUnit formatters for rspec
|
74
76
|
test_files:
|
75
|
-
- spec/rspec-extra-formatters/junit_formatter_spec.rb
|
76
77
|
- spec/rspec-extra-formatters/tap_formatter_spec.rb
|
78
|
+
- spec/rspec-extra-formatters/junit_formatter_spec.rb
|
77
79
|
- spec/spec_helper.rb
|