smartcloud 0.0.69 → 0.0.70
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: 0665a65532f8f45ebf9d4618ceb9722f8cdbeee850d75ee40df1728309108528
|
|
4
|
+
data.tar.gz: 75584a87c22676315d4e77344baf346d433fc5d3371408e5e250a30e99c22187
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f3e57dffd898578b530c6a484b0cf6ee99cfe2eb3c87281b55e019faf2f8d2dbf8c1103a70a4a5420cb3f04aacdb9f47922345bf37f058beb0646a7e15c83b9c
|
|
7
|
+
data.tar.gz: 275b0c3b9c7a3d9f23cf2cd5c7b66cb39498beaceafc5fda38cf910bd6bf92aa0a1036565ccde50e234c521f4dbba1d17323015d468f832290d8f8eb034d98ff
|
|
@@ -259,7 +259,7 @@ module Smartcloud
|
|
|
259
259
|
app_versions = Dir.glob('*').select { |f| File.directory? f }.sort
|
|
260
260
|
destroy_count = app_versions.count - ENV['KEEP_RELEASES'].to_i
|
|
261
261
|
if destroy_count > 0
|
|
262
|
-
print "-----> Deleting older application
|
|
262
|
+
print "-----> Deleting older application releases ... "
|
|
263
263
|
destroy_count.times do
|
|
264
264
|
FileUtils.rm_r(File.join(Dir.pwd, app_versions.shift))
|
|
265
265
|
end
|
|
@@ -327,7 +327,7 @@ module Smartcloud
|
|
|
327
327
|
end
|
|
328
328
|
|
|
329
329
|
def self.start_app_rails(appname, container_path, container_path_with_now_date)
|
|
330
|
-
puts "-----> Ruby on Rails
|
|
330
|
+
puts "-----> Ruby on Rails application detected"
|
|
331
331
|
|
|
332
332
|
# Setup rails env
|
|
333
333
|
env_path = "#{container_path}/env"
|