souls 0.25.17 → 0.25.18
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/README.md +1 -1
- data/lib/souls/generate/mutation.rb +3 -3
- data/lib/souls/version.rb +1 -1
- data/lib/souls/versions/.souls_api_version +1 -1
- data/lib/souls/versions/.souls_worker_version +1 -1
- metadata +9 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b37b1bd07ccc1f56e0d2bec995d2e0a25870c5b2fae39ccba829fb714250c658
|
|
4
|
+
data.tar.gz: 4e09f36c6d09ab3573b2f3eed08ef0b7d5a485ad87e36cc8c3045a925965145b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f28323d5e145c0171eb127c9078e7057dc2c76a075b394a89bac3a7a1a829fb82fa2b9deb44d1d921890d175b3eeb31a999910d3a9a42ca9ed41f4233d68ac85
|
|
7
|
+
data.tar.gz: e573f692123e85db8ac9d5ccaa8b561375d05623d1d432982546af51e6f4513e5a0b9ef974a476dac5fbb2e26dc1c844c02f9f7590cab29998e7390b46db323e
|
data/README.md
CHANGED
|
@@ -23,7 +23,7 @@ Welcome to SOULs Serverless Application Framework!
|
|
|
23
23
|
|
|
24
24
|
SOULs is a Serverless Application Framework with Ruby GraphQL.
|
|
25
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!
|
|
26
|
-
You can focus on your business logic.
|
|
26
|
+
You can focus on your business logic.
|
|
27
27
|
|
|
28
28
|

|
|
29
29
|
|
|
@@ -104,7 +104,7 @@ module Souls
|
|
|
104
104
|
File.open(file_path, "w") do |new_line|
|
|
105
105
|
new_line.write(<<~TEXT)
|
|
106
106
|
module Mutations
|
|
107
|
-
module
|
|
107
|
+
module Base::#{class_name.camelize}
|
|
108
108
|
class Update#{class_name.camelize} < BaseMutation
|
|
109
109
|
field :#{class_name}_edge, Types::#{class_name.camelize}Type.edge_type, null: false
|
|
110
110
|
|
|
@@ -211,7 +211,7 @@ module Souls
|
|
|
211
211
|
File.open(file_path, "w") do |f|
|
|
212
212
|
f.write(<<~TEXT)
|
|
213
213
|
module Mutations
|
|
214
|
-
module
|
|
214
|
+
module Base::#{class_name.camelize}
|
|
215
215
|
class Delete#{class_name.camelize} < BaseMutation
|
|
216
216
|
field :#{class_name}, Types::#{class_name.camelize}Type, null: false
|
|
217
217
|
argument :id, String, required: true
|
|
@@ -240,7 +240,7 @@ module Souls
|
|
|
240
240
|
File.open(file_path, "w") do |f|
|
|
241
241
|
f.write(<<~TEXT)
|
|
242
242
|
module Mutations
|
|
243
|
-
module
|
|
243
|
+
module Base::#{class_name.camelize}
|
|
244
244
|
class DestroyDelete#{class_name.camelize} < BaseMutation
|
|
245
245
|
field :#{class_name}, Types::#{class_name.camelize}Type, null: false
|
|
246
246
|
argument :id, String, required: true
|
data/lib/souls/version.rb
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
1
|
+
0.4.21
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
1
|
+
0.4.21
|
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.
|
|
4
|
+
version: 0.25.18
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- POPPIN-FUMI
|
|
@@ -55,9 +55,10 @@ dependencies:
|
|
|
55
55
|
- !ruby/object:Gem::Version
|
|
56
56
|
version: 0.3.0
|
|
57
57
|
description: |-
|
|
58
|
-
SOULs is a Serverless Application Framework.
|
|
59
|
-
|
|
60
|
-
|
|
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.
|
|
61
62
|
email:
|
|
62
63
|
- f.kawasaki@elsoul.nl
|
|
63
64
|
- s.kishi@elsoul.nl
|
|
@@ -123,8 +124,8 @@ requirements: []
|
|
|
123
124
|
rubygems_version: 3.2.22
|
|
124
125
|
signing_key:
|
|
125
126
|
specification_version: 4
|
|
126
|
-
summary: SOULs is a Serverless Application Framework. SOULs has
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
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
|
|
129
|
+
the purpose. SOULs Ruby GraphQL API / Worker and Easy to deploy to Google Cloud.
|
|
130
|
+
No more routing for Backends! You can focus on your business logic.
|
|
130
131
|
test_files: []
|