cnunciato-buildkite 0.0.24
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 +7 -0
- data/.rspec +3 -0
- data/.rubocop.yml +25 -0
- data/README.md +31 -0
- data/Rakefile +22 -0
- data/env.mustache +6 -0
- data/lib/buildkite/version.rb +3 -0
- data/lib/buildkite.rb +33 -0
- data/lib/environment.rb +222 -0
- data/lib/schema.rb +2989 -0
- data/project.json +62 -0
- data/sig/buildkite.rbs +4 -0
- metadata +56 -0
data/project.json
ADDED
@@ -0,0 +1,62 @@
|
|
1
|
+
{
|
2
|
+
"name": "sdk-ruby",
|
3
|
+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
4
|
+
"sourceRoot": "sdk/ruby",
|
5
|
+
"projectType": "library",
|
6
|
+
"tags": [],
|
7
|
+
"targets": {
|
8
|
+
"clean": {
|
9
|
+
"executor": "nx:run-commands",
|
10
|
+
"options": {
|
11
|
+
"commands": [
|
12
|
+
"rm -rf .yardoc",
|
13
|
+
"rm -rf .rspec_status",
|
14
|
+
"rm -rf pkg"
|
15
|
+
],
|
16
|
+
"cwd": "sdk/ruby"
|
17
|
+
},
|
18
|
+
"cache": false
|
19
|
+
},
|
20
|
+
"format": {
|
21
|
+
"executor": "nx:run-commands",
|
22
|
+
"options": {
|
23
|
+
"commands": ["bundle exec rubocop -A"],
|
24
|
+
"cwd": "sdk/ruby"
|
25
|
+
},
|
26
|
+
"cache": false
|
27
|
+
},
|
28
|
+
"build": {
|
29
|
+
"executor": "nx:run-commands",
|
30
|
+
"outputs": ["{projectRoot}/dist/sdks/ruby"],
|
31
|
+
"options": {
|
32
|
+
"commands": ["bundle exec rake build"],
|
33
|
+
"cwd": "sdk/ruby"
|
34
|
+
},
|
35
|
+
"cache": false
|
36
|
+
},
|
37
|
+
"test": {
|
38
|
+
"executor": "nx:run-commands",
|
39
|
+
"options": {
|
40
|
+
"commands": ["bundle install", "bundle exec rspec spec"],
|
41
|
+
"cwd": "sdk/ruby"
|
42
|
+
},
|
43
|
+
"cache": false
|
44
|
+
},
|
45
|
+
"docs:build": {
|
46
|
+
"executor": "nx:run-commands",
|
47
|
+
"outputs": ["{workspaceRoot}/dist/docs/ruby"],
|
48
|
+
"options": {
|
49
|
+
"command": "bundle exec yard doc lib --output-dir ../../dist/docs/ruby",
|
50
|
+
"cwd": "sdk/ruby"
|
51
|
+
},
|
52
|
+
"cache": false
|
53
|
+
},
|
54
|
+
"docs:serve": {
|
55
|
+
"executor": "@nx/web:file-server",
|
56
|
+
"options": {
|
57
|
+
"port": 8082,
|
58
|
+
"buildTarget": "docs:build"
|
59
|
+
}
|
60
|
+
}
|
61
|
+
}
|
62
|
+
}
|
data/sig/buildkite.rbs
ADDED
metadata
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cnunciato-buildkite
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.24
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Christian Nunciato
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2025-01-05 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: A Ruby SDK for Buildkite!
|
14
|
+
email:
|
15
|
+
- chris@nunciato.org
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- ".rspec"
|
21
|
+
- ".rubocop.yml"
|
22
|
+
- README.md
|
23
|
+
- Rakefile
|
24
|
+
- env.mustache
|
25
|
+
- lib/buildkite.rb
|
26
|
+
- lib/buildkite/version.rb
|
27
|
+
- lib/environment.rb
|
28
|
+
- lib/schema.rb
|
29
|
+
- project.json
|
30
|
+
- sig/buildkite.rbs
|
31
|
+
homepage: https://buildkite.com
|
32
|
+
licenses: []
|
33
|
+
metadata:
|
34
|
+
homepage_uri: https://buildkite.com
|
35
|
+
source_code_uri: https://github.com/cnunciato/buildkite-sdk
|
36
|
+
changelog_uri: https://github.com/cnunciato/buildkite-sdk
|
37
|
+
post_install_message:
|
38
|
+
rdoc_options: []
|
39
|
+
require_paths:
|
40
|
+
- lib
|
41
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
42
|
+
requirements:
|
43
|
+
- - ">="
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: 3.0.0
|
46
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
47
|
+
requirements:
|
48
|
+
- - ">="
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: '0'
|
51
|
+
requirements: []
|
52
|
+
rubygems_version: 3.5.16
|
53
|
+
signing_key:
|
54
|
+
specification_version: 4
|
55
|
+
summary: A Ruby SDK for Buildkite!
|
56
|
+
test_files: []
|