dapp 0.24.1 → 0.24.2
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 +5 -5
- data/lib/dapp/dimg/config/directive/git_artifact_remote.rb +5 -5
- data/lib/dapp/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 711a5437dbf0884562828f82acd776be195b55296bd0bae399df741948dc54c8
|
|
4
|
+
data.tar.gz: be503623c85de0524122e07b5e3b0d75926b422d27a3cbf97c21e29edc12d898
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bb36763ce5ec18d906ebac308e8c65463004b100048729bcf372b927483217c8251c82ee5136f6c89bbbf6c2024e3283ddf28e27fbd62cd8f3ef424e213fd831
|
|
7
|
+
data.tar.gz: 770207f63dce8f8fefff3bea2a6ab183b43cbebdad1f2439fcc0e178b18f7d63f07991b23d9cd460e5cc208d8671d71b66c2d0cb5ef37bd37aab89d8f6486ea7
|
|
@@ -16,11 +16,11 @@ module Dapp
|
|
|
16
16
|
end
|
|
17
17
|
|
|
18
18
|
def branch(value)
|
|
19
|
-
sub_directive_eval { @_branch = value }
|
|
19
|
+
sub_directive_eval { @_branch = value.to_s }
|
|
20
20
|
end
|
|
21
21
|
|
|
22
22
|
def commit(value)
|
|
23
|
-
sub_directive_eval { @_commit = value }
|
|
23
|
+
sub_directive_eval { @_commit = value.to_s }
|
|
24
24
|
end
|
|
25
25
|
|
|
26
26
|
def _export
|
|
@@ -38,15 +38,15 @@ module Dapp
|
|
|
38
38
|
attr_accessor :_url, :_name, :_branch, :_commit
|
|
39
39
|
|
|
40
40
|
def _artifact_options
|
|
41
|
-
super.merge(name: _name, branch: _branch
|
|
41
|
+
super.merge(name: _name, branch: _branch, commit: _commit)
|
|
42
42
|
end
|
|
43
43
|
|
|
44
44
|
def branch(value)
|
|
45
|
-
sub_directive_eval { @_branch = value }
|
|
45
|
+
sub_directive_eval { @_branch = value.to_s }
|
|
46
46
|
end
|
|
47
47
|
|
|
48
48
|
def commit(value)
|
|
49
|
-
sub_directive_eval { @_commit = value }
|
|
49
|
+
sub_directive_eval { @_commit = value.to_s }
|
|
50
50
|
end
|
|
51
51
|
|
|
52
52
|
def validate!
|
data/lib/dapp/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dapp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.24.
|
|
4
|
+
version: 0.24.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dmitry Stolyarov
|
|
@@ -721,7 +721,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
721
721
|
version: 2.5.0
|
|
722
722
|
requirements: []
|
|
723
723
|
rubyforge_project:
|
|
724
|
-
rubygems_version: 2.
|
|
724
|
+
rubygems_version: 2.7.4
|
|
725
725
|
signing_key:
|
|
726
726
|
specification_version: 4
|
|
727
727
|
summary: Build docker packaged apps using chef or shell
|