souls 0.7.1 → 0.7.2
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/exe/souls +2 -2
- data/lib/souls/init.rb +1 -1
- data/lib/souls/version.rb +1 -1
- 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: 7edac3edfc81e8b26dcb983906fe05a793a7fcc54b948acc7ac563ee9de28656
|
|
4
|
+
data.tar.gz: 06cc251724f61df779e368b3603c31b2c4a1ca17db9dcfa97719748624d1c2c3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8fbd9e534dd1974480c67f15e88477e646f5436b1a859af2b7f268295fc237c7870166508352086789f57cbdc7dc37c2a2d2deb1faecd3bbca91d7e1f798c9ce
|
|
7
|
+
data.tar.gz: 1a52eb714f8360e1acf44ad228e9f33aeb875023fb3845ab912ca746bca9243680e1252578cd2aa5f616fb3e75f80223964b41b496dab3ab99ce7a197748a88c
|
data/exe/souls
CHANGED
|
@@ -9,9 +9,9 @@ begin
|
|
|
9
9
|
puts "you need to specify your app name \n `souls new app_name`"
|
|
10
10
|
exit
|
|
11
11
|
end
|
|
12
|
-
puts "Which framework: \n 1. SOULS gRPC Service \n 2. SOULS GraphQL API \n 3. SOULS Media Web \n
|
|
12
|
+
puts "Which framework: \n 1. SOULS gRPC Service \n 2. SOULS GraphQL API gRPC compatible \n 3. SOULS GraphQL API \n 4. SOULS Media Web \n 5. SOULS Admin Web \n Enter Number: "
|
|
13
13
|
strain = STDIN.gets.chomp.to_i
|
|
14
|
-
(1..
|
|
14
|
+
(1..5).include?(strain) ? puts("Generating Souls.. \n") : raise(StandardError, "Choose Number 1..5")
|
|
15
15
|
Souls::Init.create_souls strain: strain, app_name: ARGV[1]
|
|
16
16
|
when "s", "server"
|
|
17
17
|
strain = Souls.configuration.strain
|
data/lib/souls/init.rb
CHANGED
data/lib/souls/version.rb
CHANGED