buildkite-sdk 0.0.1 → 0.1.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 +4 -4
- data/README.md +19 -21
- data/lib/buildkite/version.rb +1 -1
- data/lib/buildkite.rb +29 -2
- data/lib/schema.rb +2779 -0
- data/project.json +1 -1
- metadata +11 -5
data/project.json
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: buildkite-sdk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Buildkite
|
8
8
|
bindir: exe
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-17 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: ostruct
|
@@ -23,9 +23,14 @@ dependencies:
|
|
23
23
|
- - "~>"
|
24
24
|
- !ruby/object:Gem::Version
|
25
25
|
version: 0.1.0
|
26
|
-
description:
|
26
|
+
description: "# buildkite-sdk\n\n[](https://buildkite.com/buildkite/pipeline-sdk)\n\nA
|
27
|
+
Ruby SDK for [Buildkite](https://buildkite.com)! \U0001FA81\n\n## Usage\n\nInstall
|
28
|
+
the package:\n\n```bash\ngem install buildkite-sdk\n```\n\nUse it in your program:\n\n```ruby\nrequire
|
29
|
+
\"buildkite\"\n\npipeline = Buildkite::Pipeline.new\n\npipeline.add_step(\n label:
|
30
|
+
\"some-label\",\n command: \"echo 'Hello, World!'\"\n)\n\nputs pipeline.to_json\nputs
|
31
|
+
pipeline.to_yaml\n```\n"
|
27
32
|
email:
|
28
|
-
-
|
33
|
+
- support@buildkite.com
|
29
34
|
executables: []
|
30
35
|
extensions: []
|
31
36
|
extra_rdoc_files: []
|
@@ -38,6 +43,7 @@ files:
|
|
38
43
|
- lib/buildkite.rb
|
39
44
|
- lib/buildkite/version.rb
|
40
45
|
- lib/environment.rb
|
46
|
+
- lib/schema.rb
|
41
47
|
- project.json
|
42
48
|
- sig/buildkite.rbs
|
43
49
|
homepage: https://buildkite.com
|