dapp 0.26.1 → 0.26.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 +4 -4
- data/lib/dapp/dapp/dappfile.rb +2 -3
- 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: e0c89aa17f75b85d02ff8e2d61509be25b24c255
|
|
4
|
+
data.tar.gz: d74d06d30d4373f63ba4c7f72017ba040bcab164
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 718e02aeac16f13c76837713b9b6c0c131f6bcfe3d209c38880ca7651f7c136954ea059e3cd33cd694660271460cab1d8e8efdb33c6952acc9b48009ba3672b0
|
|
7
|
+
data.tar.gz: 796cf6110efe254a07a73edfd4c662041d91abe11f8fda48f78f5dfcb2ede70cf5f68cbf56d663d96e377a52e1c2b601743fea1bff68082bdce4e18d07492fe0
|
data/lib/dapp/dapp/dappfile.rb
CHANGED
|
@@ -124,13 +124,12 @@ module Dapp
|
|
|
124
124
|
return if File.exists? dappfile_yml_bin_path
|
|
125
125
|
|
|
126
126
|
log_process("Downloading dappfile-yml dapp dependency") do
|
|
127
|
-
|
|
128
|
-
location = URI("https://dl.bintray.com/diafour/dapp/#{::Dapp::VERSION}/dappfile-yml")
|
|
127
|
+
location = URI("https://dl.bintray.com/flant/dapp/#{::Dapp::VERSION}/dappfile-yml")
|
|
129
128
|
|
|
130
129
|
tmp_bin_path = File.join(self.class.tmp_base_dir, "dappfile-yml-#{SecureRandom.uuid}")
|
|
131
130
|
::Dapp::Downloader.download(location, tmp_bin_path, show_progress: true, progress_titile: dappfile_yml_bin_path)
|
|
132
131
|
|
|
133
|
-
checksum_location = URI("https://dl.bintray.com/
|
|
132
|
+
checksum_location = URI("https://dl.bintray.com/flant/dapp/#{::Dapp::VERSION}/dappfile-yml.sha")
|
|
134
133
|
tmp_bin_checksum_path = tmp_bin_path + ".checksum"
|
|
135
134
|
::Dapp::Downloader.download(checksum_location, tmp_bin_checksum_path)
|
|
136
135
|
|
data/lib/dapp/version.rb
CHANGED