smartcloud 0.0.186 → 0.0.187
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/smartcloud/grids/runner.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 35e5f54917af80945f7b664925c02531c306c8d41780d834f65b01a385c6d837
|
|
4
|
+
data.tar.gz: aebf58cd8a3a3b0715134a0ac98872b601704762113f717553d714d4302aa1ab
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4e91ad2eb6fe003c1849fd6e9b6e4e44a6108fcef8754531f2b3439454c63e7b65ff30c627ed7647fae02660863b20bf1bb1babc81d32f3d1ab1c820c7b59649
|
|
7
|
+
data.tar.gz: 8720a9fb308d1c6eb00a96b019744e548bbabb253e4828bd6ba64514f0f63d7dfaeab1de912789bfcebfe5066d5a4dce3b431d4471f42ab2fd5d49858e30aea2
|
|
@@ -250,7 +250,7 @@ module Smartcloud
|
|
|
250
250
|
FileUtils.mkdir_p(container_path_with_version)
|
|
251
251
|
if system("git archive #{newrev} | tar -x -C #{container_path_with_version}")
|
|
252
252
|
# Start App
|
|
253
|
-
self.start_app(appname)
|
|
253
|
+
return self.start_app(appname)
|
|
254
254
|
else
|
|
255
255
|
logger.fatal "Could not extract new app version ... Failed."
|
|
256
256
|
return
|
|
@@ -280,7 +280,7 @@ module Smartcloud
|
|
|
280
280
|
logger.info "Launching Application ..."
|
|
281
281
|
if File.exist? "#{container_path_with_version}/bin/rails"
|
|
282
282
|
# Starting Rails App
|
|
283
|
-
self.start_app_rails(appname, container_path, container_path_with_version)
|
|
283
|
+
return self.start_app_rails(appname, container_path, container_path_with_version)
|
|
284
284
|
end
|
|
285
285
|
end
|
|
286
286
|
end
|