yarjuf 1.0.2 → 1.0.3
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/lib/yarjuf.rb +1 -1
- metadata +4 -4
data/lib/yarjuf.rb
CHANGED
|
@@ -42,7 +42,7 @@ class JUnit < RSpec::Core::Formatters::BaseFormatter
|
|
|
42
42
|
|
|
43
43
|
def failure_details_for(example)
|
|
44
44
|
exception = example.metadata[:execution_result][:exception]
|
|
45
|
-
exception.nil? ? "" : "#{exception.message}\n#{format_backtrace(exception.backtrace).join("\n")}"
|
|
45
|
+
exception.nil? ? "" : "#{exception.message}\n#{format_backtrace(exception.backtrace, example).join("\n")}"
|
|
46
46
|
end
|
|
47
47
|
|
|
48
48
|
def fail_count_for_suite(suite)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yarjuf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-
|
|
12
|
+
date: 2012-12-06 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rspec
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
requirements:
|
|
19
19
|
- - ! '>='
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 2.0
|
|
21
|
+
version: '2.0'
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -26,7 +26,7 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ! '>='
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 2.0
|
|
29
|
+
version: '2.0'
|
|
30
30
|
- !ruby/object:Gem::Dependency
|
|
31
31
|
name: builder
|
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|