smartcloud 0.0.55 → 0.0.60
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c232578df6b9c605cd12ffea381afdc7b96be07fac4965d67428a4672450fb45
|
|
4
|
+
data.tar.gz: 380004759b4c0ada658329ccf2b3a35bab6d7ba9318fecbb46789a0496e46149
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cf1f39b846803fcd00457b5f4a747006cb95149e5e21847ec71e91e310b5b7fc4e97559505825ad01fa974ce15cd7fc487c2dabf7c8d6fe17dbc28ea8143848f
|
|
7
|
+
data.tar.gz: b13454b0a7a6b00cbafe34d391e8efbc23e10fe66333cbe89b72ebdffeb655b2185c9dd8c1235d0c32323972fb6a5ed1ef048fd9d0d636d21d262b96dc260555
|
|
@@ -15,7 +15,7 @@ RUN echo -e '#!/bin/sh\n\
|
|
|
15
15
|
cd /code\n\
|
|
16
16
|
test -f ./tmp/pids/server.pid && rf ./tmp/pids/server.pid; true\n\
|
|
17
17
|
\n\
|
|
18
|
-
echo "
|
|
18
|
+
echo "---------------------------------------------------------------"\n\
|
|
19
19
|
echo "-----> Performing bundle install"\n\
|
|
20
20
|
bundle install\n\
|
|
21
21
|
echo "-----> Compiling Assets"\n\
|
|
@@ -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)
|