rspec_enhanced_json_formatter 0.3.0 → 0.4.0
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.
- checksums.yaml +4 -4
- data/lib/rspec_enhanced_json_formatter.rb +1 -1
- data/rspec_enhanced_json_formatter.gemspec +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 21484941101340520ce6fb4632e4cc6612a5066fbf1fed2443dfbdf766a32746
|
4
|
+
data.tar.gz: 7c36088d947945cd1f972d4a146798d312dbc200e5e2fb235bd662efc0849006
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c1d5fff34cf55c2ff0eea0db08ec59a8319c6f0441a919a03ae5355160b989402eea8df046cb172fb197d7fea79305f51b57cea18300316306d7f1588114430
|
7
|
+
data.tar.gz: bb15f6d88131884c497f8be4211f6ad2fc3451eea5f0ba9bf227b816a9310694fe30a099b5129d8e8f075528da13c3f2e7ffc352657d71de335384cff3c1c213
|
@@ -49,7 +49,7 @@ class RSpecEnhancedJSONFormatter < RSpec::Core::Formatters::BaseFormatter
|
|
49
49
|
|
50
50
|
if notification.respond_to?(:fully_formatted_lines)
|
51
51
|
event[:error] = {
|
52
|
-
message: notification.fully_formatted_lines(nil).join("\n")
|
52
|
+
message: notification.fully_formatted_lines(nil).join("\n")[0..10_000]
|
53
53
|
}
|
54
54
|
|
55
55
|
exception = notification.exception
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec_enhanced_json_formatter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jon Botelho
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-10-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec-core
|
@@ -116,7 +116,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
116
116
|
- !ruby/object:Gem::Version
|
117
117
|
version: '0'
|
118
118
|
requirements: []
|
119
|
-
|
119
|
+
rubyforge_project:
|
120
|
+
rubygems_version: 2.7.7
|
120
121
|
signing_key:
|
121
122
|
specification_version: 4
|
122
123
|
summary: Enhanced JSON formatter for RSpec
|