smartcloud 0.0.55 → 0.0.56
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/smartcloud/grids/runner.rb +4 -4
- 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: b274ecc5aab94381b5dce56a3ea00d23c093504a71e296c3e4a52afe3eb0dfc1
|
4
|
+
data.tar.gz: ece64d6a3fb50cacab40cb688a6423b0fbf3153b73dc4d3ee543263c7dd1790f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad7b416bde91eca14814a2dfbc448163847aab3bc3fb859a714a9e3344e598804f2c024094941cb54884a917ada6e293834c5a7824ca44943b97214673cb0d5f
|
7
|
+
data.tar.gz: 65777b0576567b4b1643b6cdb9da97552d9107c05f1e38d9753cbc26ee7502f35df5ec74ff95d605f68e3cccfe79282af554ac004179192aa4ae71307bf2fef2
|
@@ -216,7 +216,7 @@ module Smartcloud
|
|
216
216
|
## Verify the user and ensure the user is correct and has access to this repository
|
217
217
|
print "-----> Verifying User ... "
|
218
218
|
unless File.exist? "#{container_path}/env"
|
219
|
-
puts "Environment could not be loaded ... Failed"
|
219
|
+
puts "Environment could not be loaded ... Failed."
|
220
220
|
exit 1
|
221
221
|
end
|
222
222
|
|
@@ -230,7 +230,7 @@ module Smartcloud
|
|
230
230
|
|
231
231
|
# Match Username
|
232
232
|
unless ENV['USERNAME'] == username
|
233
|
-
puts "User is not authorized ... Failed"
|
233
|
+
puts "User is not authorized ... Failed."
|
234
234
|
exit 1
|
235
235
|
end
|
236
236
|
puts "done"
|
@@ -266,7 +266,7 @@ module Smartcloud
|
|
266
266
|
# Start App
|
267
267
|
self.start_app(appname)
|
268
268
|
else
|
269
|
-
puts "
|
269
|
+
puts "Could not extract new app version ... Failed."
|
270
270
|
exit 1
|
271
271
|
end
|
272
272
|
end
|
@@ -352,7 +352,7 @@ module Smartcloud
|
|
352
352
|
--name='#{appname}' \
|
353
353
|
--env-file='#{container_path}/env' \
|
354
354
|
--expose='5000' \
|
355
|
-
--volume='
|
355
|
+
--volume='#{container_path_with_now_date}:/code' \
|
356
356
|
--restart='always' \
|
357
357
|
--network='nginx-network' \
|
358
358
|
smartcloud/buildpacks/rails", out: File::NULL)
|