souls 0.25.17 → 0.25.18

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 24ac34b77f043d519782fcc96186b2a367e698f6c54942ca57f7e433feb79de7
4
- data.tar.gz: 9bd6a7050e1e21b3a3af3f65fe79a8f48a82351433c243ece6741209db07c176
3
+ metadata.gz: b37b1bd07ccc1f56e0d2bec995d2e0a25870c5b2fae39ccba829fb714250c658
4
+ data.tar.gz: 4e09f36c6d09ab3573b2f3eed08ef0b7d5a485ad87e36cc8c3045a925965145b
5
5
  SHA512:
6
- metadata.gz: 1e4c57899b2e1e4c253a7e8069ab0c040f0e5570db12d12540b698ff6f93734d73ecced5268c93122217e624cf9621360281985856e8965e95bdffcd414370cd
7
- data.tar.gz: aba9a8c9f85fdfef566aba952dd093c17b5798fd76e93ab89b71421ca237b1859122c1c41b1168802a742279e4f2d794c8b7d3156efd317568be4ae7874a8af5
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. No more infra problems.
26
+ You can focus on your business logic.
27
27
 
28
28
  ![画像](https://storage.googleapis.com/souls-bucket/imgs/souls-structure.jpg)
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 #{class_name.camelize}
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 #{class_name.camelize}
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 #{class_name.camelize}
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,4 +1,4 @@
1
1
  module Souls
2
- VERSION = "0.25.17".freeze
2
+ VERSION = "0.25.18".freeze
3
3
  public_constant :VERSION
4
4
  end
@@ -1 +1 @@
1
- 0.4.20
1
+ 0.4.21
@@ -1 +1 @@
1
- 0.4.20
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.17
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
- SOULs has four strains, API, Worker, Console, Media, and can be used in combination according to the purpose.
60
- SOULs Backend GraphQL Ruby & Frontend Relay are Scalable and Easy to deploy to Google Cloud and Amazon Web Services
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 four strains, API,
127
- Worker, Console, Media, and can be used in combination according to the purpose.
128
- SOULs Backend GraphQL Ruby & Frontend Relay are Scalable and Easy to deploy to Google
129
- Cloud and Amazon Web Services
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: []