dagger_ruby 0.1.0 → 0.2.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/dagger_ruby.gemspec +5 -5
- data/lib/dagger_ruby/version.rb +1 -1
- metadata +10 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5c060625ba3761a736bf6aaaa808388ba9c626a04781d12164f5e918a5897bbf
|
4
|
+
data.tar.gz: 9e82d97c7c779a090c7a8223b0400a4de20864fabf16012c2a0338d59ffb613b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4bfceaad3d1a74d1905d1307fb1e99c45bffbc6237eb363011e4584113b1f00b676a94d8c872b4d19b1f75ef51bb8ca65ff473cb16d39c74b90fea8b0acbb1c8
|
7
|
+
data.tar.gz: f911ad33f2f60b1874af58e8984827df16710cdbb05087370de362d84346480a7645eebb098cb105f2772409544af7285af6f0a3f7c2564645705b0216586bd7
|
data/dagger_ruby.gemspec
CHANGED
@@ -8,17 +8,17 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.authors = [ "Gaurav Tiwari" ]
|
9
9
|
spec.email = [ "gaurav@gauravtiwari.co.uk" ]
|
10
10
|
|
11
|
-
spec.summary = "A Ruby SDK for Dagger"
|
12
|
-
spec.description = "
|
13
|
-
spec.homepage = "https://github.com/
|
11
|
+
spec.summary = "A Ruby SDK for Dagger - build powerful CI/CD pipelines using Ruby"
|
12
|
+
spec.description = "DaggerRuby provides a fluent, idiomatic Ruby interface to Dagger's container-based CI/CD engine. Define build pipelines programmatically with the full power of Ruby instead of YAML configurations. Features lazy execution, caching, secrets management, and service orchestration."
|
13
|
+
spec.homepage = "https://github.com/boringcache/dagger_ruby"
|
14
14
|
spec.license = "MIT"
|
15
15
|
spec.required_ruby_version = ">= 3.1.0"
|
16
16
|
|
17
17
|
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
18
18
|
|
19
19
|
spec.metadata["homepage_uri"] = spec.homepage
|
20
|
-
spec.metadata["source_code_uri"] = "https://github.com/
|
21
|
-
spec.metadata["changelog_uri"] = "https://github.com/
|
20
|
+
spec.metadata["source_code_uri"] = "https://github.com/boringcache/dagger_ruby"
|
21
|
+
spec.metadata["changelog_uri"] = "https://github.com/boringcache/dagger_ruby/blob/main/CHANGELOG.md"
|
22
22
|
|
23
23
|
# Specify which files should be added to the gem when it is released.
|
24
24
|
spec.files = Dir.glob(%w[
|
data/lib/dagger_ruby/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dagger_ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gaurav Tiwari
|
@@ -37,8 +37,10 @@ dependencies:
|
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
39
|
version: '0.1'
|
40
|
-
description:
|
41
|
-
|
40
|
+
description: DaggerRuby provides a fluent, idiomatic Ruby interface to Dagger's container-based
|
41
|
+
CI/CD engine. Define build pipelines programmatically with the full power of Ruby
|
42
|
+
instead of YAML configurations. Features lazy execution, caching, secrets management,
|
43
|
+
and service orchestration.
|
42
44
|
email:
|
43
45
|
- gaurav@gauravtiwari.co.uk
|
44
46
|
executables: []
|
@@ -64,14 +66,14 @@ files:
|
|
64
66
|
- lib/dagger_ruby/secret.rb
|
65
67
|
- lib/dagger_ruby/service.rb
|
66
68
|
- lib/dagger_ruby/version.rb
|
67
|
-
homepage: https://github.com/
|
69
|
+
homepage: https://github.com/boringcache/dagger_ruby
|
68
70
|
licenses:
|
69
71
|
- MIT
|
70
72
|
metadata:
|
71
73
|
allowed_push_host: https://rubygems.org
|
72
|
-
homepage_uri: https://github.com/
|
73
|
-
source_code_uri: https://github.com/
|
74
|
-
changelog_uri: https://github.com/
|
74
|
+
homepage_uri: https://github.com/boringcache/dagger_ruby
|
75
|
+
source_code_uri: https://github.com/boringcache/dagger_ruby
|
76
|
+
changelog_uri: https://github.com/boringcache/dagger_ruby/blob/main/CHANGELOG.md
|
75
77
|
rubygems_mfa_required: 'true'
|
76
78
|
rdoc_options: []
|
77
79
|
require_paths:
|
@@ -89,5 +91,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
89
91
|
requirements: []
|
90
92
|
rubygems_version: 3.6.9
|
91
93
|
specification_version: 4
|
92
|
-
summary: A Ruby SDK for Dagger
|
94
|
+
summary: A Ruby SDK for Dagger - build powerful CI/CD pipelines using Ruby
|
93
95
|
test_files: []
|