rspec-teamcity 0.0.1 → 1.0.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 +5 -5
- data/README.md +1 -1
- data/lib/rspec/teamcity/version.rb +1 -1
- data/lib/rspec/teamcity_rspec3.rb +6 -1
- data/rspec-teamcity.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 932ba286d3a99d6cb1afd34a18591b9c42718086d278691a7fc0855ba21dd122
|
|
4
|
+
data.tar.gz: 1023bfa4a560630370815b8ff59bcf11260ac2d4191b51928a589f752e5ae759
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3d523e7ef6904cefbc3d6eb1db0bb659c93b186799996c1c63fb32715cda11301dc23dff7601801825431bca7a9b4a16ee7857ef1d649569d1a6f0816ab0e2ae
|
|
7
|
+
data.tar.gz: 4271b5c2a3618251ce476d7f699057ecf25bd8949197db2746e80ed1579cac7805ad6eb122a39e68126585ad7979af2908f3115b0ee22a4703c30c6fb58c1af1
|
data/README.md
CHANGED
|
@@ -35,7 +35,7 @@ module Spec
|
|
|
35
35
|
:example_group_started, :example_group_finished,
|
|
36
36
|
:example_started, :example_passed,
|
|
37
37
|
:example_pending, :example_failed,
|
|
38
|
-
:dump_summary
|
|
38
|
+
:dump_summary, :seed
|
|
39
39
|
|
|
40
40
|
RUNNER_ISNT_COMPATIBLE_MESSAGE = "TeamCity Rake Runner Plugin isn't compatible with this RSpec version.\n\n"
|
|
41
41
|
TEAMCITY_FORMATTER_INTERNAL_ERRORS =[]
|
|
@@ -270,6 +270,11 @@ module Spec
|
|
|
270
270
|
tc_rspec_do_close
|
|
271
271
|
end
|
|
272
272
|
|
|
273
|
+
def seed(notification)
|
|
274
|
+
return unless notification.seed_used?
|
|
275
|
+
log notification.fully_formatted
|
|
276
|
+
end
|
|
277
|
+
|
|
273
278
|
###########################################################################
|
|
274
279
|
###########################################################################
|
|
275
280
|
###########################################################################
|
data/rspec-teamcity.gemspec
CHANGED
|
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
|
|
|
14
14
|
https://confluence.jetbrains.com/display/TCD8/Build+Script+Interaction+with+TeamCity#BuildScriptInteractionwithTeamCity-ReportingTests
|
|
15
15
|
EOF
|
|
16
16
|
spec.homepage = "https://github.com/apechimp/rspec-teamcity"
|
|
17
|
-
spec.license = "
|
|
17
|
+
spec.license = "GPL-3.0"
|
|
18
18
|
|
|
19
19
|
spec.files = `git ls-files -z`.split("\x0")
|
|
20
20
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rspec-teamcity
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Atkins
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-12-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -94,7 +94,7 @@ files:
|
|
|
94
94
|
- rspec-teamcity.gemspec
|
|
95
95
|
homepage: https://github.com/apechimp/rspec-teamcity
|
|
96
96
|
licenses:
|
|
97
|
-
-
|
|
97
|
+
- GPL-3.0
|
|
98
98
|
metadata: {}
|
|
99
99
|
post_install_message:
|
|
100
100
|
rdoc_options: []
|
|
@@ -112,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
112
112
|
version: '0'
|
|
113
113
|
requirements: []
|
|
114
114
|
rubyforge_project:
|
|
115
|
-
rubygems_version: 2.
|
|
115
|
+
rubygems_version: 2.7.7
|
|
116
116
|
signing_key:
|
|
117
117
|
specification_version: 4
|
|
118
118
|
summary: TeamCity rspec reporter
|