souls 0.63.4 → 0.63.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8579c9811adaa3970cceee58fc6f42f08e39b67f2b8c485cf23f0cce19934a86
4
- data.tar.gz: 5fa60609ce4a0c07a1a0957f14f754717c148df61771a85a1cf7589b073f17ea
3
+ metadata.gz: 8443218b427d92c7252f85d69661f9a6ca9dc8e720caea130c587ecdb3273869
4
+ data.tar.gz: cbec1e6d277c379740a1b17beb6cead17538173f21a3236b81157ab7ccc24c68
5
5
  SHA512:
6
- metadata.gz: a29e3d77f284109d336cdbd94456ab89125bdc53e7e273e84b42eb425cae30447b078e5fcb4bd5252d169a5d995b88ea7ffc0cc00eaf8dbce90812da94f251d7
7
- data.tar.gz: 68616b0988def074c59e81bdf73844e688286fa0521f34573185021fc70334f1b94ec9636d6610ffb2d9622d3e1ecc75bf5b457c092909aa0ea684539f226d2d
6
+ metadata.gz: ad677a57d73d5a7f72520c1af9dad3b1967778a3447f15b5a7df4fa74b7c4b1b609b187ddc15a1c3be6d24da15beae2430cc0ec8fdc920f1ceed436cc001ec34
7
+ data.tar.gz: 6e7a7aa9dd491f03c05ee2d011e6f2b965db33fc3ec052211771ff016b20d49a95db6e2aea6e36e0467800b6829feec29de0475cb87447739ac790a7af90ca02
data/README.md CHANGED
@@ -21,17 +21,12 @@
21
21
 
22
22
  Welcome to SOULs Serverless Application Framework!
23
23
 
24
- SOULs はサーバーレスフルスタックフレームワークです。柔軟な Ruby GraphQL API Worker はルーティングの必要がありません。
25
- クラウド環境への自動デプロイ、CI/CD ワークフローを標準装備。開発者がビジネスロジックに集中し、楽しくコードが書けるような環境を目指しています。
26
-
27
- SOULs バックエンドには `API` と `Worker` の 2 つのタイプがあります。
28
- `API` は主にデータをフロントエンドへ提供します。`Worker` は主に `タスク` の処理を行います
24
+ - Focus on business logic in serverless environment
25
+ - Maximize development efficiency with CI / CD standard schema-driven Scaffold
26
+ - Achieve global scale with lower management costs
29
27
 
30
28
  ![画像](https://souls.elsoul.nl/imgs/docs/SOULs.jpg)
31
29
 
32
- 現在のバージョンでは SOULs `API` と `Worker` を Github Actions を使って Google Cloud Run へそれぞれデプロイします。
33
-
34
- SOULs フレームワークでは [Monorepo](https://en.wikipedia.org/wiki/Monorepo) によって一つのパッケージでアプリケーションを管理します。
35
30
 
36
31
  SOULs creates 2 types of framework.
37
32
 
@@ -79,41 +74,15 @@ And Create Your APP
79
74
 
80
75
  $ souls new app_name
81
76
  $ cd apps/api/app_name
82
- $ bundle
83
77
  $ souls s
84
78
 
85
79
  Check your GraphQL PlayGround
86
80
 
87
81
  [localhost:4000/playground](localhost:4000/playground)
88
82
 
89
- ## Gemfile 自動更新アップデート
90
-
91
- `Gemfile`, `Gemfile.lock` を最新のバージョンに自動更新します。
92
-
93
- ```
94
- souls upgrade gemfile
95
- ```
96
-
97
- 除外したい `gem` は `config/souls.rb` 内の
98
- `config.fixed_gems` の配列に追加します。
99
-
100
- ```ruby
101
- Souls.configure do |config|
102
- config.app = "souls-api"
103
- config.project_id = "souls-api"
104
- config.region = "asia-northeast1"
105
- config.endpoint = "/endpoint"
106
- config.strain = "api"
107
- config.fixed_gems = ["selenium-webdriver"]
108
- config.workers = []
109
- end
110
- ```
111
83
 
112
84
  ## SOULs Serverless Application Framework Document
113
85
 
114
- SOULs サーバーレスアプリケーションフレームワーク
115
- ドキュメントはこちらから
116
-
117
86
  - [SOULs Document](https://souls.elsoul.nl/)
118
87
 
119
88
  ## Development
@@ -37,7 +37,7 @@ module Souls
37
37
  class Create#{singularized_class_name.camelize} < BaseMutation
38
38
  field :#{singularized_class_name}_edge, Types::#{singularized_class_name.camelize}Type.edge_type, null: false
39
39
  field :error, String, null: true
40
- #{' '}
40
+
41
41
  def resolve(args)
42
42
  TEXT
43
43
  end
data/lib/souls/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Souls
2
- VERSION = "0.63.4".freeze
2
+ VERSION = "0.63.5".freeze
3
3
  public_constant :VERSION
4
4
  end
@@ -1 +1 @@
1
- 0.42.4
1
+ 0.42.5
@@ -1 +1 @@
1
- 0.42.4
1
+ 0.42.5
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.63.4
4
+ version: 0.63.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - POPPIN-FUMI
@@ -111,8 +111,13 @@ dependencies:
111
111
  - !ruby/object:Gem::Version
112
112
  version: 1.1.0
113
113
  description: |-
114
- SOULs はサーバーレスフルスタックフレームワークです。柔軟な Ruby GraphQL API と Worker はルーティングの必要がありません。
115
- クラウド環境への自動デプロイ、CI/CD ワークフローを標準装備。開発者がビジネスロジックに集中し、楽しくコードが書けるような環境を目指しています。
114
+ Welcome to SOULs Serverless Application Framework!
115
+
116
+ - Focus on business logic in serverless environment
117
+
118
+ - Maximize development efficiency with CI / CD standard schema-driven Scaffold
119
+
120
+ - Achieve global scale with lower management costs
116
121
  email:
117
122
  - f.kawasaki@elsoul.nl
118
123
  - s.kishi@elsoul.nl
@@ -220,6 +225,7 @@ requirements: []
220
225
  rubygems_version: 3.2.22
221
226
  signing_key:
222
227
  specification_version: 4
223
- summary: SOULs はサーバーレスフルスタックフレームワークです。柔軟な Ruby GraphQL API Worker はルーティングの必要がありません。
224
- クラウド環境への自動デプロイ、CI/CD ワークフローを標準装備。開発者がビジネスロジックに集中し、楽しくコードが書けるような環境を目指しています。
228
+ summary: Welcome to SOULs Serverless Application Framework! - Focus on business logic
229
+ in serverless environment - Maximize development efficiency with CI / CD standard
230
+ schema-driven Scaffold - Achieve global scale with lower management costs
225
231
  test_files: []