souls 0.25.16 → 0.25.17
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/exe/souls +1 -1
- data/lib/souls/generate/mutation.rb +2 -2
- 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 +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 24ac34b77f043d519782fcc96186b2a367e698f6c54942ca57f7e433feb79de7
|
4
|
+
data.tar.gz: 9bd6a7050e1e21b3a3af3f65fe79a8f48a82351433c243ece6741209db07c176
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e4c57899b2e1e4c253a7e8069ab0c040f0e5570db12d12540b698ff6f93734d73ecced5268c93122217e624cf9621360281985856e8965e95bdffcd414370cd
|
7
|
+
data.tar.gz: aba9a8c9f85fdfef566aba952dd093c17b5798fd76e93ab89b71421ca237b1859122c1c41b1168802a742279e4f2d794c8b7d3156efd317568be4ae7874a8af5
|
data/exe/souls
CHANGED
@@ -184,7 +184,7 @@ begin
|
|
184
184
|
system("rm -rf ../#{other_app}/db/*")
|
185
185
|
system("cp -r ./db/* ../#{other_app}/db/*")
|
186
186
|
when "t", "test"
|
187
|
-
system("rubocop -
|
187
|
+
system("rubocop -A")
|
188
188
|
system("bundle exec rspec")
|
189
189
|
when "run"
|
190
190
|
system("docker build . -t souls -f Dockerfile.dev")
|
@@ -12,7 +12,7 @@ module Souls
|
|
12
12
|
module Mutations
|
13
13
|
module Base::#{singularized_class_name.camelize}
|
14
14
|
class Create#{singularized_class_name.camelize} < BaseMutation
|
15
|
-
field :#{singularized_class_name}_edge, Types::#{singularized_class_name.camelize}.edge_type, null: false
|
15
|
+
field :#{singularized_class_name}_edge, Types::#{singularized_class_name.camelize}Type.edge_type, null: false
|
16
16
|
field :error, String, null: true
|
17
17
|
|
18
18
|
TEXT
|
@@ -106,7 +106,7 @@ module Souls
|
|
106
106
|
module Mutations
|
107
107
|
module #{class_name.camelize}
|
108
108
|
class Update#{class_name.camelize} < BaseMutation
|
109
|
-
field :#{class_name}_edge, Types::#{class_name.camelize}.edge_type, null: false
|
109
|
+
field :#{class_name}_edge, Types::#{class_name.camelize}Type.edge_type, null: false
|
110
110
|
|
111
111
|
argument :id, String, required: true
|
112
112
|
TEXT
|
data/lib/souls/version.rb
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.4.
|
1
|
+
0.4.20
|
@@ -1 +1 @@
|
|
1
|
-
0.4.
|
1
|
+
0.4.20
|