dapp 0.36.7 → 0.36.8

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: 4bd7511f847379c6c28add23cb967652e2403bbf1929608f1ebde9cab3fb3a67
4
- data.tar.gz: 8e96635473e372a9f2c7ddc868b3e40ef2f99dc2eebbd8eed754474833b46390
3
+ metadata.gz: 80062cfb0a6affd18f750b158f934a9ef9d29a639ba669f80042da8b9bab48df
4
+ data.tar.gz: 06deea168090fb7001ed35d00f05eb60eb4ea55884294fb7d60de325a373e8a6
5
5
  SHA512:
6
- metadata.gz: 7a26715448e1668315018df3e04a6ba33b0918943c9888acaa5b33caec329e85d82c94f9b494a3e61cde0af0fdaf7054a47c250ec4e183784008fd1c753be33c
7
- data.tar.gz: 44c892d4035c0ac91d86aca53bd7351cb45b80631155d66ec97ad505201c466f4114908e30bb162be3ae7443ff99e5d36afa0953a0859af48ae1b2303cdb33fe
6
+ metadata.gz: d1700b0df641df2bbda82658c13b19a1150f49b7e75ac9f044f06edda670b57869813eaef0cff8195f95434fd670769d4d72dfa38e020ff30b5336f6d26e246e
7
+ data.tar.gz: ad2b8a4a9f658ced0c6a85c6cd7c8cbac708651fb430388be98c4296ca5a2fcf11cc7ee77869c8fadb52cf51e2a3e75b0192c8cc0009e0a704e5fccce5490694
@@ -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/flant/dapp/#{::Dapp::VERSION}/dappfile-yml")
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/flant/dapp/#{::Dapp::VERSION}/dappfile-yml.sha")
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
 
@@ -106,12 +106,12 @@ module Dapp
106
106
  return if File.exists? bin_path
107
107
 
108
108
  log_process("Downloading #{progname} dapp dependency") do
109
- location = URI("https://dl.bintray.com/flant/dapp/#{::Dapp::VERSION}/#{progname}")
109
+ location = URI("https://dl.bintray.com/dapp/ruby2go/#{::Dapp::VERSION}/#{progname}")
110
110
 
111
111
  tmp_bin_path = File.join(self.class.tmp_base_dir, "#{progname}-#{SecureRandom.uuid}")
112
112
  ::Dapp::Downloader.download(location, tmp_bin_path, show_progress: true, progress_titile: bin_path)
113
113
 
114
- checksum_location = URI("https://dl.bintray.com/flant/dapp/#{::Dapp::VERSION}/#{progname}.sha")
114
+ checksum_location = URI("https://dl.bintray.com/dapp/ruby2go/#{::Dapp::VERSION}/#{progname}.sha")
115
115
  tmp_bin_checksum_path = tmp_bin_path + ".checksum"
116
116
  ::Dapp::Downloader.download(checksum_location, tmp_bin_checksum_path)
117
117
 
@@ -1,4 +1,4 @@
1
1
  module Dapp
2
- VERSION = "0.36.7"
2
+ VERSION = "0.36.8"
3
3
  BUILD_CACHE_VERSION = 33
4
4
  end
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.36.7
4
+ version: 0.36.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitry Stolyarov