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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b76d756aec9ec8d9c77ba704bf8fd85f1f03c207027c84327f8f843109c11916
4
- data.tar.gz: 285d37c361ecea2565c996a531e9ee8ba08c08eb192ff2a6c184f3ffd3644e82
3
+ metadata.gz: 6a5ddc9fb88e7e0a57c6c72af2ac06256d957010054db2c6a9946e0bd6370e8e
4
+ data.tar.gz: 63740e105c70bb0e11fd0790a249e3f1bcb511bea16fa3acfa45260e98b70329
5
5
  SHA512:
6
- metadata.gz: 5e1c7dbaf692aac0b000477555cd169b23d438c9e9521661f09a18e2705590480d89e2beb5d3dd9fd6aef307f6f15b3c544c7bdbf2ed23813c1e958a0ac780fa
7
- data.tar.gz: 7dc7ec6e3df5b3642790da56c045e1618746471303fc4287518ea18bad8aed233114667fcb4afc94a77e3ea664257719bf4efc39d22abc38c9282eaaffcadf2c
6
+ metadata.gz: c97fc980df42476346bec2f7cb700e6f7276b8e2f3cac21b7653415ed3813f6a65b3e63949b9a07ebf2784aaf29e23acad7041c370375414acea4c203f9e57be
7
+ data.tar.gz: 1afcb6c3f29fdb6c7c13e2a14ec414096f9aa0e4a8974c2de3f22e89ad640a0db6ec943729adf224f4fc9eb92a5b0f766fffa55e976cb90579c7c02da8f46646
@@ -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
 
@@ -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/flant/dapp/#{::Dapp::VERSION}/#{progname}")
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/flant/dapp/#{::Dapp::VERSION}/#{progname}.sha")
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
@@ -1,4 +1,4 @@
1
1
  module Dapp
2
- VERSION = "0.35.41"
2
+ VERSION = "0.35.43"
3
3
  BUILD_CACHE_VERSION = 33
4
4
  end
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.41
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-20 00:00:00.000000000 Z
11
+ date: 2018-12-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mixlib-shellout