rspec-buildkite-analytics 0.3.3 → 0.3.4
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/Gemfile.lock +2 -2
- data/lib/rspec/buildkite/analytics/uploader.rb +4 -4
- data/lib/rspec/buildkite/analytics/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 23cd65346e813fe92bc69f52607c1dd580666879ca6ccc28b89fa277cff496e2
|
|
4
|
+
data.tar.gz: 3f1bc2b37f5e926d144b38b28a4406f0604e6458d8d288c32a6500869eea1258
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c08b2ae468dda9fe8aabb7e52088eb2447243d4022f33402086e80968c1ef49382e2aa0aad4a3c596b4fb4337ce6b89ecc059862786393e08de8aa039de6230d
|
|
7
|
+
data.tar.gz: f7ed799c14eeaa6720b62e9ac25b9ea1c550019f776cf6a9c4437abdc9100e0ccc030ee97c3339b02f2e19fc3fa6518e7bf1977afdaf59bc97bfd495a9a1d94a
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
rspec-buildkite-analytics (0.3.
|
|
4
|
+
rspec-buildkite-analytics (0.3.4)
|
|
5
5
|
activesupport (>= 5.2, <= 7.0)
|
|
6
6
|
rspec-core (~> 3.10)
|
|
7
7
|
rspec-expectations (~> 3.10)
|
|
@@ -49,4 +49,4 @@ DEPENDENCIES
|
|
|
49
49
|
rspec-buildkite-analytics!
|
|
50
50
|
|
|
51
51
|
BUNDLED WITH
|
|
52
|
-
2.2.
|
|
52
|
+
2.2.22
|
|
@@ -127,12 +127,12 @@ module RSpec::Buildkite::Analytics
|
|
|
127
127
|
response = begin
|
|
128
128
|
http.request(contact)
|
|
129
129
|
rescue *REQUEST_EXCEPTIONS => e
|
|
130
|
-
puts "Error communicating with the server: #{e.message}"
|
|
130
|
+
puts "Buildkite Test Analytics: Error communicating with the server: #{e.message}"
|
|
131
131
|
end
|
|
132
132
|
|
|
133
133
|
case response.code
|
|
134
134
|
when "401"
|
|
135
|
-
puts "Invalid Suite API key. Please double check your Suite API key."
|
|
135
|
+
puts "Buildkite Test Analytics: Invalid Suite API key. Please double check your Suite API key."
|
|
136
136
|
when "200"
|
|
137
137
|
json = JSON.parse(response.body)
|
|
138
138
|
|
|
@@ -141,10 +141,10 @@ module RSpec::Buildkite::Analytics
|
|
|
141
141
|
end
|
|
142
142
|
else
|
|
143
143
|
request_id = response.to_hash["x-request-id"]
|
|
144
|
-
puts "Unknown error. If this error persists, please contact support+analytics@buildkite.com with this request ID `#{request_id}`."
|
|
144
|
+
puts "Buildkite Test Analytics: Unknown error. If this error persists, please contact support+analytics@buildkite.com with this request ID `#{request_id}`."
|
|
145
145
|
end
|
|
146
146
|
else
|
|
147
|
-
puts "No Suite API key provided. You can get the API key from your Suite settings page."
|
|
147
|
+
puts "Buildkite Test Analytics: No Suite API key provided. You can get the API key from your Suite settings page."
|
|
148
148
|
end
|
|
149
149
|
end
|
|
150
150
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rspec-buildkite-analytics
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Buildkite
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-10-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -121,7 +121,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
121
121
|
- !ruby/object:Gem::Version
|
|
122
122
|
version: '0'
|
|
123
123
|
requirements: []
|
|
124
|
-
rubygems_version: 3.2.
|
|
124
|
+
rubygems_version: 3.2.22
|
|
125
125
|
signing_key:
|
|
126
126
|
specification_version: 4
|
|
127
127
|
summary: Track execution of specs and report to Buildkite Analytics
|