buildkite-builder 4.15.1 → 4.16.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bccfadb050be6e42d6bbc5a0203046be22ea0ab1e81d41d1acced573a9f733bd
4
- data.tar.gz: 7f378cc85461b3d3742aa431687ab2cac00a6403735f21e730ae39df573287ab
3
+ metadata.gz: 172d487569f8e831c7bcf805de5fca900c0dab583c50603568f55c17d3b084f2
4
+ data.tar.gz: '0387cef9a6b60e14ff31bb14067532031d8359cf6863c42a788248e299d0245a'
5
5
  SHA512:
6
- metadata.gz: 2e29a3f53cadbc48625614d68ebd619a3acd3ce6cd109d9320019e6a5ce42f103ba4f2fbb4186c03c8772eade3ddf53af6b21ae6ba2e327838a65c5bdbced529
7
- data.tar.gz: 31e9dff87dbea1c22330a689b2a323f629b6f62663c8ef16957e28cee5685e9f21b1d73a6b5fc3624e87aaf9fd1ea734cad8fb370a6081e7cf38c42db047e81a
6
+ metadata.gz: 9d740a6fe4e69ee34877f806fa3c672c2365f07bbc76cd59ba36020991be5b8cd4309158f81d45e9a1b54013d35952b829eab1f229e39f4aca9ba8b5e84bd029
7
+ data.tar.gz: d9fb64137ae3274bdd4cd87727d41b919f987a1b21f9dadef497973d51e136cc3db03cc8962a04da96eaf0eec9a1a748022c44532c52a3c4173a71c3cd67da40
data/VERSION CHANGED
@@ -1 +1 @@
1
- 4.15.1
1
+ 4.16.0
@@ -12,8 +12,7 @@ module Buildkite
12
12
  plugins: :Plugins,
13
13
  retry: :Retry,
14
14
  skip: :Skip,
15
- soft_fail: :SoftFail,
16
- timeout_in_minutes: :TimeoutInMinutes,
15
+ soft_fail: :SoftFail
17
16
  }.freeze
18
17
 
19
18
  ATTRIBUTE_HELPERS.each do |name, mod|
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: buildkite-builder
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.15.1
4
+ version: 4.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ngan Pham
8
8
  - Andrew Lee
9
- autorequire:
10
9
  bindir: exe
11
10
  cert_chain: []
12
- date: 2024-11-26 00:00:00.000000000 Z
11
+ date: 2025-01-08 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: rainbow
@@ -156,7 +155,6 @@ files:
156
155
  - lib/buildkite/pipelines/helpers/retry.rb
157
156
  - lib/buildkite/pipelines/helpers/skip.rb
158
157
  - lib/buildkite/pipelines/helpers/soft_fail.rb
159
- - lib/buildkite/pipelines/helpers/timeout_in_minutes.rb
160
158
  - lib/buildkite/pipelines/step_context.rb
161
159
  - lib/buildkite/pipelines/steps.rb
162
160
  - lib/buildkite/pipelines/steps/abstract.rb
@@ -174,7 +172,6 @@ metadata:
174
172
  source_code_uri: https://github.com/Gusto/buildkite-builder
175
173
  changelog_uri: https://github.com/Gusto/buildkite-builder/blob/master/CHANGELOG.md
176
174
  bug_tracker_uri: https://github.com/Gusto/buildkite-builder/issues
177
- post_install_message:
178
175
  rdoc_options: []
179
176
  require_paths:
180
177
  - lib
@@ -189,8 +186,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
189
186
  - !ruby/object:Gem::Version
190
187
  version: '0'
191
188
  requirements: []
192
- rubygems_version: 3.5.16
193
- signing_key:
189
+ rubygems_version: 3.6.2
194
190
  specification_version: 4
195
191
  summary: A gem for programmatically creating Buildkite pipelines.
196
192
  test_files: []
@@ -1,17 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Buildkite
4
- module Pipelines
5
- module Helpers
6
- module TimeoutInMinutes
7
- def timeout(*args)
8
- timeout_in_minutes(*args)
9
- end
10
-
11
- def timeout?(*args)
12
- timeout_in_minutes?(*args)
13
- end
14
- end
15
- end
16
- end
17
- end