cloudwalk 0.5.0 → 0.5.1

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
  SHA1:
3
- metadata.gz: 37667857b19ab8a888cb30cc5f8e3c128563de0a
4
- data.tar.gz: 04340e7c0b55377263e0f5005bbff4d6df170e39
3
+ metadata.gz: e7ad0fecbfb0b1be0220a0294cff0c7656f16c4a
4
+ data.tar.gz: fef18c3187805611f4a0dcc74e1e147ede1b3463
5
5
  SHA512:
6
- metadata.gz: 5bf00a5d8cbf8ce67aa33fd273bbb219ca6052273ceb314dcbb9f7aab7ad7b597a8ec41274c61144719d5f5609a1427843ed36de332d10beb3a9e890c778f875
7
- data.tar.gz: c1779ce771740f59d55aa25cda6fa09cc3ddcebb9460a46200005fec78bbf668c669cf1e6cf78c663a1192815a7ea33409d29898361300f850bb45526e3d8ffe
6
+ metadata.gz: 124afd7fbf20fc1e001bcbd4cfb960083bc67cdc9c74436c42fdafa16ac3f81d9621eb9daf7bd405edc4df7caed9e180f218cc0f6b559941694ad9eb3d9cef06
7
+ data.tar.gz: 8c3a65932991bf1b404e8574ce13d8aa6ab69d94a6734bafa5d8f41967975a1af32386a137536626d6801b0aad16a88143ab455c14e210503ebd31260fa9c7fe
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -176,9 +176,9 @@ module Cloudwalk
176
176
  app_lock["id"], app_lock["version_id"], File.read(path), app_cwfile
177
177
  )
178
178
  if ret
179
- puts "=> Success Deployed"
179
+ STDOUT.write("\r=> Success Deployed\n")
180
180
  else
181
- puts "=> Error #{response.code}:#{response.body}"
181
+ STDOUT.write("\r=> Error #{response.code}:#{response.body}\n")
182
182
  end
183
183
  end
184
184
  end
@@ -59,7 +59,7 @@ module Cloudwalk
59
59
  request.set_form_data(form)
60
60
  response = http.request(request)
61
61
  end
62
- [response.code == 200, response]
62
+ [response.code.to_i == 200, response]
63
63
  end
64
64
  end
65
65
  end
@@ -46,7 +46,7 @@ module Cloudwalk
46
46
 
47
47
  posxml = Cloudwalk::CwFileJson.xml2posxml(out)
48
48
  platform_call "cloudwalk compile -xml -o #{posxml} #{xml}"
49
- print " [#{File.size(posxml)}]"
49
+ puts "=> #{File.size(posxml)} "
50
50
  else
51
51
  FileUtils.rm_rf self.out_path
52
52
  FileUtils.mkdir_p self.out_path
@@ -54,7 +54,7 @@ module Cloudwalk
54
54
  self.libs.zip(self.outs).each do |file, out|
55
55
  posxml = Cloudwalk::CwFileJson.xml2posxml(out)
56
56
  platform_call "cloudwalk compile -xml -o #{posxml} #{file}"
57
- print " [#{File.size(posxml)}]"
57
+ puts "=> #{File.size(posxml)} "
58
58
  end
59
59
  end
60
60
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloudwalk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thiago Scalone