buildkite-builder 4.2.4 → 4.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 37ac678a8fff2b5fe3ea556532ef7d7c39fe4830d80dd47b1fbd923879594117
4
- data.tar.gz: 4332c1ff51fc79786db0b665e4b62aef77293a00508dae613d5a2bbdcc91808d
3
+ metadata.gz: 6d27ba7be3d5fd3885be95d7d296c05643232507da5cd6b006ff7a3e94f68981
4
+ data.tar.gz: db8bbe46f1a8848a67ed4eb7d75652864decaddd7efbb9546a83f0221c79635d
5
5
  SHA512:
6
- metadata.gz: 70f7f8e01a7d04b65f0a1bf3432011c8cc5192a183ac35a3ebf80e689d5decd0842a00be2994eeb60585d0bbcfc37bc6b346b8ddc2896a01fdaf1c0ef119e63c
7
- data.tar.gz: 10a8b7871413cbbd4d00b84dd7106adb0e78253cbc410a80f78d6cb76ce68f2513c91a0cb7405db33457580a8ba6e60810ff69b32306a269b14d6766759e2bfd
6
+ metadata.gz: 88570f93c62497ec97289a55169ad8932836b1f31cc1d503416f0abb8bfa7d5a774e1f8d43495e8f3a9fb44abe5b8283e209652cb1a6383f664a4fc3a0e15a57
7
+ data.tar.gz: f257e71d32997ce9fabc7b71dab4afedc3771b961c5f6783a142b365bd59182e727b7198edb33311b126233a6d8682619c4ed774d1df618c0374a237d3f3ed79
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ### 4.3.0
2
+ * Remove the `DependsOn` helper module since it doesn't do anything additive.
3
+
4
+ ### 4.2.5
5
+ * Add `skip` attributes to Block and Input steps.
6
+
1
7
  ### 4.2.4
2
8
  * Add more group step attributes as listed in https://buildkite.com/docs/pipelines/group-step#group-step-attributes
3
9
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 4.2.4
1
+ 4.3.0
@@ -6,7 +6,6 @@ module Buildkite
6
6
  ATTRIBUTE_HELPERS = {
7
7
  block: :Block,
8
8
  command: :Command,
9
- depends_on: :DependsOn,
10
9
  key: :Key,
11
10
  label: :Label,
12
11
  plugins: :Plugins,
@@ -9,6 +9,7 @@ module Buildkite
9
9
  attribute :block
10
10
  attribute :key
11
11
  attribute :prompt
12
+ attribute :skip
12
13
  attribute :if, as: :condition
13
14
  attribute :depends_on, append: true
14
15
  attribute :allow_dependency_failure
@@ -9,6 +9,7 @@ module Buildkite
9
9
  attribute :input
10
10
  attribute :key
11
11
  attribute :prompt
12
+ attribute :skip
12
13
  attribute :if, as: :condition
13
14
  attribute :depends_on, append: true
14
15
  attribute :allow_dependency_failure
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: buildkite-builder
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.2.4
4
+ version: 4.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ngan Pham
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2023-08-09 00:00:00.000000000 Z
12
+ date: 2023-09-27 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rainbow
@@ -134,7 +134,6 @@ files:
134
134
  - lib/buildkite/pipelines/helpers.rb
135
135
  - lib/buildkite/pipelines/helpers/block.rb
136
136
  - lib/buildkite/pipelines/helpers/command.rb
137
- - lib/buildkite/pipelines/helpers/depends_on.rb
138
137
  - lib/buildkite/pipelines/helpers/key.rb
139
138
  - lib/buildkite/pipelines/helpers/label.rb
140
139
  - lib/buildkite/pipelines/helpers/plugins.rb
@@ -174,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
174
173
  - !ruby/object:Gem::Version
175
174
  version: '0'
176
175
  requirements: []
177
- rubygems_version: 3.3.13
176
+ rubygems_version: 3.3.26
178
177
  signing_key:
179
178
  specification_version: 4
180
179
  summary: A gem for programmatically creating Buildkite pipelines.
@@ -1,13 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Buildkite
4
- module Pipelines
5
- module Helpers
6
- module DependsOn
7
- def depends_on(*values)
8
- values.flatten.each { |value| super(value) }
9
- end
10
- end
11
- end
12
- end
13
- end