souls 0.25.18 → 0.25.19

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: b37b1bd07ccc1f56e0d2bec995d2e0a25870c5b2fae39ccba829fb714250c658
4
- data.tar.gz: 4e09f36c6d09ab3573b2f3eed08ef0b7d5a485ad87e36cc8c3045a925965145b
3
+ metadata.gz: b95e788773391bebd59bf7faf921e9d647bb39f564430b45e239e79c2b0ccfed
4
+ data.tar.gz: 22d8445babf829feb19c61209033f5e9b32196f827468f0ad2f9c40aa75305d9
5
5
  SHA512:
6
- metadata.gz: f28323d5e145c0171eb127c9078e7057dc2c76a075b394a89bac3a7a1a829fb82fa2b9deb44d1d921890d175b3eeb31a999910d3a9a42ca9ed41f4233d68ac85
7
- data.tar.gz: e573f692123e85db8ac9d5ccaa8b561375d05623d1d432982546af51e6f4513e5a0b9ef974a476dac5fbb2e26dc1c844c02f9f7590cab29998e7390b46db323e
6
+ metadata.gz: 19d6e7e610f56fe92c41c12f2b2175fd92877d2d398a2f246e3a26c18f8cb4d53abb462e4644bf21527c92e9b89e26f16e88e66e68cb682a65c11eecc49b2bc8
7
+ data.tar.gz: eca89781a54e42932c3835f56b9c70c3ea1cc3f282b9c4c32c0effeb8ce354e313ce1cafb64ceb90e9191f78c9e92ffe18a5ce6bc9b9503cee257d87bf06bc0b
data/README.md CHANGED
@@ -22,19 +22,16 @@
22
22
  Welcome to SOULs Serverless Application Framework!
23
23
 
24
24
  SOULs is a Serverless Application Framework with Ruby GraphQL.
25
- SOULs has six strains, API, Worker, Console, Admin, Media, Doc, and can be used in combination according to the purpose. SOULs Backend GraphQL Ruby & Frontend Relay are Scalable and Easy to deploy to Google Cloud. No more routing for Backends!
25
+ SOULs has 3 strains, API, Worker, and Frontend. It can be used in combination according to the purpose. SOULs Backend GraphQL Ruby & Frontend Relay are Scalable and Easy to deploy to Google Cloud. No more routing for Backends!
26
26
  You can focus on your business logic.
27
27
 
28
28
  ![画像](https://storage.googleapis.com/souls-bucket/imgs/souls-structure.jpg)
29
29
 
30
- SOULs creates 6 types of framework.
30
+ SOULs creates 3 types of framework.
31
31
 
32
32
  1. API - GraphQL (Ruby) - Simple API - Cloud Run
33
33
  2. Worker - Google Pub/Sub Worker API (Ruby) - Cloud Run
34
- 3. Console Web Client - User Console and CMS (TypeScript)
35
- 4. Admin Web Client - Admin Console and CMS (TypeScript)
36
- 5. Media Web Client - Media web client with SSG (TypeScript)
37
- 6. Doc Web Client - Doc web client with SSG (TypeScript)
34
+ 3. Frontend - React Application (TypeScript) - Firebase
38
35
 
39
36
  ## Dependency
40
37
 
@@ -81,10 +78,7 @@ And Create Your APP
81
78
  Select Strain:
82
79
  1. SOULs GraphQL API
83
80
  2. SOULs Worker
84
- 3. SOULs Console Web
85
- 4. SOULs Admin Web
86
- 5. SOULs Media Web
87
- 6. SOULs Doc Web
81
+ 3. SOULs Frontend Web
88
82
 
89
83
 
90
84
  ## Gemfile 自動更新アップデート
data/exe/souls CHANGED
@@ -18,14 +18,7 @@ begin
18
18
  end
19
19
 
20
20
  prompt = TTY::Prompt.new
21
- choices = [
22
- "1. SOULs GraphQL API",
23
- "2. SOULs Pub/Sub Worker",
24
- "3. SOULs Console Web",
25
- "4. SOULs Admin Web",
26
- "5. SOULs Media Web",
27
- "6. SOULs Doc Web"
28
- ]
21
+ choices = ["1. SOULs GraphQL API", "2. SOULs Pub/Sub Worker", "3. SOULs Frontend Web"]
29
22
  choice_num = prompt.select(Paint["Select Strain: ", :cyan], choices)[0].to_i
30
23
  case choice_num
31
24
  when 1, 2
data/lib/souls/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Souls
2
- VERSION = "0.25.18".freeze
2
+ VERSION = "0.25.19".freeze
3
3
  public_constant :VERSION
4
4
  end
@@ -1 +1 @@
1
- 0.4.21
1
+ 0.4.22
@@ -1 +1 @@
1
- 0.4.21
1
+ 0.4.22
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.25.18
4
+ version: 0.25.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - POPPIN-FUMI
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2021-07-28 00:00:00.000000000 Z
13
+ date: 2021-08-02 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: paint
@@ -56,9 +56,9 @@ dependencies:
56
56
  version: 0.3.0
57
57
  description: |-
58
58
  SOULs is a Serverless Application Framework with Ruby GraphQL.
59
- SOULs has six strains, API, Worker, Frontend, and can be used in combination according to the purpose.
60
- SOULs Ruby GraphQL API / Worker and Easy to deploy to Google Cloud. No more routing for Backends!
61
- You can focus on your business logic.
59
+ SOULs has 3 strains, API, Worker, and Frontend. It can be used in combination according to the purpose.
60
+ SOULs Ruby GraphQL API / Worker and Easy to deploy to Google Cloud. No more routing for Backends!
61
+ You can focus on your business logic.
62
62
  email:
63
63
  - f.kawasaki@elsoul.nl
64
64
  - s.kishi@elsoul.nl
@@ -125,7 +125,7 @@ rubygems_version: 3.2.22
125
125
  signing_key:
126
126
  specification_version: 4
127
127
  summary: SOULs is a Serverless Application Framework with Ruby GraphQL. SOULs has
128
- six strains, API, Worker, Frontend, and can be used in combination according to
128
+ 3 strains, API, Worker, and Frontend. It can be used in combination according to
129
129
  the purpose. SOULs Ruby GraphQL API / Worker and Easy to deploy to Google Cloud.
130
130
  No more routing for Backends! You can focus on your business logic.
131
131
  test_files: []