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 +4 -4
- data/exe/i386-apple-darwin14 +0 -0
- data/exe/i686-pc-linux-gnu +0 -0
- data/exe/i686-w64-mingw32.exe +0 -0
- data/exe/x86_64-apple-darwin14 +0 -0
- data/exe/x86_64-pc-linux-gnu +0 -0
- data/exe/x86_64-w64-mingw32.exe +0 -0
- data/lib/cloudwalk/cw_file_json.rb +2 -2
- data/lib/cloudwalk/posxml_version.rb +1 -1
- data/lib/cloudwalk/rake_task.rb +2 -2
- 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: e7ad0fecbfb0b1be0220a0294cff0c7656f16c4a
|
|
4
|
+
data.tar.gz: fef18c3187805611f4a0dcc74e1e147ede1b3463
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 124afd7fbf20fc1e001bcbd4cfb960083bc67cdc9c74436c42fdafa16ac3f81d9621eb9daf7bd405edc4df7caed9e180f218cc0f6b559941694ad9eb3d9cef06
|
|
7
|
+
data.tar.gz: 8c3a65932991bf1b404e8574ce13d8aa6ab69d94a6734bafa5d8f41967975a1af32386a137536626d6801b0aad16a88143ab455c14e210503ebd31260fa9c7fe
|
data/exe/i386-apple-darwin14
CHANGED
|
Binary file
|
data/exe/i686-pc-linux-gnu
CHANGED
|
Binary file
|
data/exe/i686-w64-mingw32.exe
CHANGED
|
Binary file
|
data/exe/x86_64-apple-darwin14
CHANGED
|
Binary file
|
data/exe/x86_64-pc-linux-gnu
CHANGED
|
Binary file
|
data/exe/x86_64-w64-mingw32.exe
CHANGED
|
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
|
-
|
|
179
|
+
STDOUT.write("\r=> Success Deployed\n")
|
|
180
180
|
else
|
|
181
|
-
|
|
181
|
+
STDOUT.write("\r=> Error #{response.code}:#{response.body}\n")
|
|
182
182
|
end
|
|
183
183
|
end
|
|
184
184
|
end
|
data/lib/cloudwalk/rake_task.rb
CHANGED
|
@@ -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
|
-
|
|
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
|
-
|
|
57
|
+
puts "=> #{File.size(posxml)} "
|
|
58
58
|
end
|
|
59
59
|
end
|
|
60
60
|
end
|