dapp 0.35.15 → 0.35.16
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 952bb7ac44d0cc251681d2feef96af7152ca4892bef9332cf40db9a6b7f8d2ce
|
|
4
|
+
data.tar.gz: bd7d1f43814edbb4ac98952a76ce5c7cba1e2e4f15f22c1929520478e77d7f48
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 87c7f9de6a9db57ea23197edb2789251acf6c7b95a7f97e284ef6ab7f4adc88b1cb4efd57dfc26682e640396bce5880f31f80902df357a8d07971e31f87a941a
|
|
7
|
+
data.tar.gz: 416b26d0385aa931cd0330b045f307606aaf73377b77e371e0fe04544d0907d2b4a9fd03c37020caf78d7d30958a0c6670bb339bf3805a9de48fb81bdd9ce741
|
|
@@ -17,7 +17,7 @@ module Dapp
|
|
|
17
17
|
end
|
|
18
18
|
|
|
19
19
|
def cleanup_local_proper_cache_version_options_dump
|
|
20
|
-
ruby2go_cleanup_common_project_options.merge(
|
|
20
|
+
ruby2go_cleanup_common_project_options.merge(ruby2go_cleanup_cache_version_options).tap do |data|
|
|
21
21
|
break JSON.dump(data)
|
|
22
22
|
end
|
|
23
23
|
end
|
|
@@ -8,7 +8,7 @@ module Dapp
|
|
|
8
8
|
lock_repo(repo = option_repo) do
|
|
9
9
|
raise ::Dapp::Error::Command, code: :stages_cleanup_required_option unless stages_cleanup_option?
|
|
10
10
|
|
|
11
|
-
ruby2go_cleanup_command(:sync,
|
|
11
|
+
ruby2go_cleanup_command(:sync, cleanup_repo_proper_cache_version_options_dump) if proper_cache_version?
|
|
12
12
|
repo_dimgstages_cleanup if proper_repo_cache?
|
|
13
13
|
end
|
|
14
14
|
end
|
|
@@ -17,7 +17,7 @@ module Dapp
|
|
|
17
17
|
ruby2go_cleanup_command(:sync, cleanup_repo_proper_repo_cache_options)
|
|
18
18
|
end
|
|
19
19
|
|
|
20
|
-
def
|
|
20
|
+
def cleanup_repo_proper_cache_version_options_dump
|
|
21
21
|
ruby2go_cleanup_common_repo_options.merge(ruby2go_cleanup_cache_version_options).merge(
|
|
22
22
|
mode: {
|
|
23
23
|
sync_repo: true,
|
data/lib/dapp/version.rb
CHANGED