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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 323a687b4562720479202691c050a77cccb23dd477baac099895baaf4c759df3
4
- data.tar.gz: 56664ce87098856f411ca485109b3ac0724679b30579eaa6d1ff5985eb73b4ba
3
+ metadata.gz: 7edac3edfc81e8b26dcb983906fe05a793a7fcc54b948acc7ac563ee9de28656
4
+ data.tar.gz: 06cc251724f61df779e368b3603c31b2c4a1ca17db9dcfa97719748624d1c2c3
5
5
  SHA512:
6
- metadata.gz: 16e7d675de0477d77de2609dd1262b5a9b01e7dfce48b1af680099ef60b0a5bebd66017a1d1089ecd002404b211ef6dca9bda88631dfba7deee5c7ac44ed240a
7
- data.tar.gz: e798891e119d60c4e9ed8ee6cb9875e45b011f63b0692295d13dc7c32397407cbaebf04f97031a1e5c4a9dba938755f3d25b5662ab9ebf83254fa93cb7cad880
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 4. SOULS Admin Web \n Enter Number: "
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..4).include?(strain) ? puts("Generating Souls.. \n") : raise(StandardError, "Choose Number 1..4")
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
@@ -1,7 +1,7 @@
1
1
  require "mechanize"
2
2
 
3
3
  module Souls
4
- STRAINS = ["service", "api", "media", "admin"]
4
+ STRAINS = ["service", "api", "graph", "media", "admin"]
5
5
  module Init
6
6
  class << self
7
7
  def create_souls strain: 1, app_name: "souls"
@@ -1,3 +1,3 @@
1
1
  module Souls
2
- VERSION = "0.7.1"
2
+ VERSION = "0.7.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: souls
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - POPPIN-FUMI