dapp 0.35.41 → 0.35.43
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 -2
- data/lib/dapp/dapp/ruby2go.rb +2 -2
- data/lib/dapp/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6a5ddc9fb88e7e0a57c6c72af2ac06256d957010054db2c6a9946e0bd6370e8e
|
|
4
|
+
data.tar.gz: 63740e105c70bb0e11fd0790a249e3f1bcb511bea16fa3acfa45260e98b70329
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c97fc980df42476346bec2f7cb700e6f7276b8e2f3cac21b7653415ed3813f6a65b3e63949b9a07ebf2784aaf29e23acad7041c370375414acea4c203f9e57be
|
|
7
|
+
data.tar.gz: 1afcb6c3f29fdb6c7c13e2a14ec414096f9aa0e4a8974c2de3f22e89ad640a0db6ec943729adf224f4fc9eb92a5b0f766fffa55e976cb90579c7c02da8f46646
|
data/lib/dapp/dapp/dappfile.rb
CHANGED
|
@@ -116,12 +116,12 @@ module Dapp
|
|
|
116
116
|
return if File.exists? dappfile_yml_bin_path
|
|
117
117
|
|
|
118
118
|
log_process("Downloading dappfile-yml dapp dependency") do
|
|
119
|
-
location = URI("https://dl.bintray.com/
|
|
119
|
+
location = URI("https://dl.bintray.com/dapp/ruby2go/#{::Dapp::VERSION}/dappfile-yml")
|
|
120
120
|
|
|
121
121
|
tmp_bin_path = File.join(self.class.tmp_base_dir, "dappfile-yml-#{SecureRandom.uuid}")
|
|
122
122
|
::Dapp::Downloader.download(location, tmp_bin_path, show_progress: true, progress_titile: dappfile_yml_bin_path)
|
|
123
123
|
|
|
124
|
-
checksum_location = URI("https://dl.bintray.com/
|
|
124
|
+
checksum_location = URI("https://dl.bintray.com/dapp/ruby2go/#{::Dapp::VERSION}/dappfile-yml.sha")
|
|
125
125
|
tmp_bin_checksum_path = tmp_bin_path + ".checksum"
|
|
126
126
|
::Dapp::Downloader.download(checksum_location, tmp_bin_checksum_path)
|
|
127
127
|
|
data/lib/dapp/dapp/ruby2go.rb
CHANGED
|
@@ -102,12 +102,12 @@ module Dapp
|
|
|
102
102
|
return if File.exists? bin_path
|
|
103
103
|
|
|
104
104
|
log_process("Downloading #{progname} dapp dependency") do
|
|
105
|
-
location = URI("https://dl.bintray.com/
|
|
105
|
+
location = URI("https://dl.bintray.com/dapp/ruby2go/#{::Dapp::VERSION}/#{progname}")
|
|
106
106
|
|
|
107
107
|
tmp_bin_path = File.join(self.class.tmp_base_dir, "#{progname}-#{SecureRandom.uuid}")
|
|
108
108
|
::Dapp::Downloader.download(location, tmp_bin_path, show_progress: true, progress_titile: bin_path)
|
|
109
109
|
|
|
110
|
-
checksum_location = URI("https://dl.bintray.com/
|
|
110
|
+
checksum_location = URI("https://dl.bintray.com/dapp/ruby2go/#{::Dapp::VERSION}/#{progname}.sha")
|
|
111
111
|
tmp_bin_checksum_path = tmp_bin_path + ".checksum"
|
|
112
112
|
::Dapp::Downloader.download(checksum_location, tmp_bin_checksum_path)
|
|
113
113
|
|
data/lib/dapp/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dapp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.35.
|
|
4
|
+
version: 0.35.43
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dmitry Stolyarov
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-12-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: mixlib-shellout
|