susana 0.0.4 → 0.0.5
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/susana.rb +4 -1
- 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: 880668952666ff483afa2924acce07f11d805d52
|
|
4
|
+
data.tar.gz: ba34d30c36f4850286a40395b9c0b237e4a2abbd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4e8e1c4c679f053b350e74d965c179742d8196102746221297fc32930fc66010fef3f813cc6be2e2da538cb417637e2269578631a1e2e2c2bf5cc86ff457fed4
|
|
7
|
+
data.tar.gz: 4809f413ea73fb22174319e0c18c86dd3740d6627b118a139acf75d0780cc3cc8751a75ff4aeb9f824359b8f0edbaecd12f33e3a9c61c5cd5f5010e4a3fb222f
|
data/lib/susana.rb
CHANGED
|
@@ -37,5 +37,8 @@ file = File.read("config.ru").gsub(key, secret)
|
|
|
37
37
|
File.open("config.ru", 'w'){|f| f.write(file)}
|
|
38
38
|
|
|
39
39
|
puts "\nApp #{name} created, please review your settings in the config directory\n\n"
|
|
40
|
-
puts "To start the application
|
|
40
|
+
puts "To start the application:\n\n"
|
|
41
|
+
puts "cd #{name}"
|
|
42
|
+
puts "bundle install"
|
|
43
|
+
puts "puma\n\n"
|
|
41
44
|
puts "Go to https://github.com/fugroup/susana for documentation\n\n"
|