buildkite-test_collector 1.4.1 → 1.4.2
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/CHANGELOG.md +4 -0
- data/Gemfile.lock +3 -3
- data/README.md +14 -0
- data/lib/buildkite/test_collector/ci.rb +1 -1
- data/lib/buildkite/test_collector/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: c89588cb63374f9a2bd84b29cd575133aa84c2a684e10e0e7d78dd63a54ad34e
|
|
4
|
+
data.tar.gz: a05196237e4d03ae61f9953c94de3d54253a40c89a6f0557c3fa8e42b800e163
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ab0e5a4fc6a21adc7f8f240331f5a80b27fb7442ca1ae5f81b5d0721e4143007ee0b4c4d1b1122c83c0e1aeaa5bea48167a6b2c3c92b3ad4d1100f7e768e607e
|
|
7
|
+
data.tar.gz: d7e0ea4e7ad204b9e5e6d11136008580a435bfe43e7ea9784926e6af60c0347dd556dd4d4410e542e29eb3c7a75be0fae3f6164a2bfbd7c451d37f121f62b932
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
buildkite-test_collector (1.4.
|
|
4
|
+
buildkite-test_collector (1.4.2)
|
|
5
5
|
activesupport (>= 4.2)
|
|
6
6
|
websocket (~> 1.2)
|
|
7
7
|
|
|
8
8
|
GEM
|
|
9
9
|
remote: https://rubygems.org/
|
|
10
10
|
specs:
|
|
11
|
-
activesupport (7.0.4)
|
|
11
|
+
activesupport (7.0.4.1)
|
|
12
12
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
13
13
|
i18n (>= 1.6, < 2)
|
|
14
14
|
minitest (>= 5.1)
|
|
@@ -17,7 +17,7 @@ GEM
|
|
|
17
17
|
diff-lcs (1.4.4)
|
|
18
18
|
i18n (1.12.0)
|
|
19
19
|
concurrent-ruby (~> 1.0)
|
|
20
|
-
minitest (5.
|
|
20
|
+
minitest (5.17.0)
|
|
21
21
|
rake (13.0.6)
|
|
22
22
|
rspec (3.10.0)
|
|
23
23
|
rspec-core (~> 3.10.0)
|
data/README.md
CHANGED
|
@@ -119,6 +119,20 @@ See [DESIGN.md](DESIGN.md) for an overview of the design of this gem.
|
|
|
119
119
|
|
|
120
120
|
Bug reports and pull requests are welcome on GitHub at https://github.com/buildkite/test-collector-ruby
|
|
121
121
|
|
|
122
|
+
## 🚀 Releasing
|
|
123
|
+
|
|
124
|
+
1. Bump the version in `version.rb` and run `bundle` to update the `Gemfile.lock`.
|
|
125
|
+
1. Update the CHANGELOG.md with your new version and a description of your changes.
|
|
126
|
+
1. Git tag your changes and push
|
|
127
|
+
```
|
|
128
|
+
git tag v.x.x.x
|
|
129
|
+
git push --tags
|
|
130
|
+
```
|
|
131
|
+
Once your PR is merged to `main`:
|
|
132
|
+
|
|
133
|
+
1. Run `rake release` from `main`.
|
|
134
|
+
1. Create a [new release in github](https://github.com/buildkite/test-collector-ruby/releases).
|
|
135
|
+
|
|
122
136
|
## 📜 MIT License
|
|
123
137
|
|
|
124
138
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
|
@@ -38,7 +38,7 @@ class Buildkite::TestCollector::CI
|
|
|
38
38
|
"execution_name_prefix" => ENV["BUILDKITE_ANALYTICS_EXECUTION_NAME_PREFIX"],
|
|
39
39
|
"execution_name_suffix" => ENV["BUILDKITE_ANALYTICS_EXECUTION_NAME_SUFFIX"],
|
|
40
40
|
"version" => Buildkite::TestCollector::VERSION,
|
|
41
|
-
"collector" => Buildkite::TestCollector::NAME,
|
|
41
|
+
"collector" => "ruby-#{Buildkite::TestCollector::NAME}",
|
|
42
42
|
}.compact
|
|
43
43
|
end
|
|
44
44
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: buildkite-test_collector
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Buildkite
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-01-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -129,7 +129,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
129
129
|
- !ruby/object:Gem::Version
|
|
130
130
|
version: '0'
|
|
131
131
|
requirements: []
|
|
132
|
-
rubygems_version: 3.
|
|
132
|
+
rubygems_version: 3.3.26
|
|
133
133
|
signing_key:
|
|
134
134
|
specification_version: 4
|
|
135
135
|
summary: Track test executions and report to Buildkite Test Analytics
|