dapp 0.7.6 → 0.7.7
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/config/en/net_status.yml +1 -1
- data/lib/dapp.rb +1 -1
- data/lib/dapp/cli/base.rb +1 -1
- data/lib/dapp/config/dimg/instance_methods.rb +1 -1
- data/lib/dapp/project.rb +1 -1
- data/lib/dapp/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1ef27281b1af7bbf5ba8f3d263cea3e5a701a2ba
|
4
|
+
data.tar.gz: 0303f66f712951a1d2f82033f9a2e368bacc9b72
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 82d1dc965ca175d1ca89df7ed555dcadadd1f148ba00da307c5182f1519af42f6f894fe90c2383c86677a2c7bea417d63d6ede0d1adda446307c14d121b62e86
|
7
|
+
data.tar.gz: 30416cab1cd47e0395b95d202bd764655ae54838e021ff4a64fefb5a393cc1f2b817eec6ab8c12ece56eed95790654002fd074a8453a730e0e979566681ebeb4
|
data/config/en/net_status.yml
CHANGED
@@ -40,7 +40,7 @@ en:
|
|
40
40
|
mount_from_type_required: "Mount: 'from' directive expect 'build_dir' or 'tmp_dir' type!"
|
41
41
|
builder_type_conflict: 'Conflict between builder types!'
|
42
42
|
builder_type_unsupported: "Defined unsupported builder type `%{type}`!"
|
43
|
-
docker_from_incorrect: "`docker.from` has incorrect value `%{name}
|
43
|
+
docker_from_incorrect: "`docker.from` has incorrect value `%{name}`!"
|
44
44
|
stage_artifact_not_associated: "Artifact not associated with any stage: expected 'before' or 'after' attribute!"
|
45
45
|
stage_artifact_double_associate: "Artifact cannot use with both associated attributes 'before' and 'after'!"
|
46
46
|
stage_artifact_not_supported_associated_stage: "Artifact not supported associated stage '%{stage}'!"
|
data/lib/dapp.rb
CHANGED
@@ -58,6 +58,7 @@ require 'dapp/cli/mrproper'
|
|
58
58
|
require 'dapp/cli/stage_image'
|
59
59
|
require 'dapp/filelock'
|
60
60
|
require 'dapp/config/base'
|
61
|
+
require 'dapp/config/directive/base'
|
61
62
|
require 'dapp/config/dimg/instance_methods'
|
62
63
|
require 'dapp/config/dimg/validation'
|
63
64
|
require 'dapp/config/dimg'
|
@@ -66,7 +67,6 @@ require 'dapp/config/dimg_group_base'
|
|
66
67
|
require 'dapp/config/dimg_group_main'
|
67
68
|
require 'dapp/config/dimg_group'
|
68
69
|
require 'dapp/config/artifact_group'
|
69
|
-
require 'dapp/config/directive/base'
|
70
70
|
require 'dapp/config/directive/artifact_base'
|
71
71
|
require 'dapp/config/directive/git_artifact_local'
|
72
72
|
require 'dapp/config/directive/git_artifact_remote'
|
data/lib/dapp/cli/base.rb
CHANGED
@@ -9,7 +9,7 @@ module Dapp
|
|
9
9
|
|
10
10
|
option :build_dir,
|
11
11
|
long: '--build-dir PATH',
|
12
|
-
description: 'Directory where build cache stored (DIR/.
|
12
|
+
description: 'Directory where build cache stored (DIR/.dapp-build by default)'
|
13
13
|
|
14
14
|
option :log_quiet,
|
15
15
|
short: '-q',
|
data/lib/dapp/project.rb
CHANGED
data/lib/dapp/version.rb
CHANGED