souls 1.13.3 → 1.13.4
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3ba8bc79c88dcbafa85d3dffd3f30a529c2ba5c8670abcd48ad5efb52d2d7352
|
|
4
|
+
data.tar.gz: 59bf01296c88174c88f638ade4855cbe5a2da2c74f36f4f1f4ec1370c6d5835f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 28a38e6407d7d297bdc1c9a97cb65933fb726617ecaf37045d5e3f323ecee56bb17b4224b5c9ae026967a3515a533d9497da6b412e5b79add0ea2666f9f99b0a
|
|
7
|
+
data.tar.gz: 6743ee5010f6bb0df88347be32491e74c0166c625adc523918b7829745bb5fd70eb23e76b17079b35e77002d1457dc90fe8e644d0c32a75d26ccfb4c70af1830
|
|
@@ -2,7 +2,7 @@ module Souls
|
|
|
2
2
|
class Delete < Thor
|
|
3
3
|
desc "rspec_job [CLASS_NAME]", "Delete Rspec Job Test Template"
|
|
4
4
|
def rspec_job(class_name)
|
|
5
|
-
file_dir = "./spec/jobs"
|
|
5
|
+
file_dir = "./spec/queries/jobs"
|
|
6
6
|
singularized_class_name = class_name.underscore.singularize
|
|
7
7
|
file_path = "#{file_dir}/#{singularized_class_name}_spec.rb"
|
|
8
8
|
FileUtils.rm_f(file_path)
|
|
@@ -69,7 +69,7 @@ module Souls
|
|
|
69
69
|
File.open(file_path, "w") do |f|
|
|
70
70
|
f.write(<<~TEXT)
|
|
71
71
|
module Queries
|
|
72
|
-
class #{class_name.camelize} <
|
|
72
|
+
class #{class_name.camelize} < BaseQuery
|
|
73
73
|
description ""
|
|
74
74
|
type Types::#{class_name.camelize}Type, null: false
|
|
75
75
|
|
|
@@ -108,7 +108,7 @@ module Souls
|
|
|
108
108
|
File.open(file_path, "w") do |f|
|
|
109
109
|
f.write(<<~TEXT)
|
|
110
110
|
module Types
|
|
111
|
-
class #{class_name.camelize}Type < BaseObject
|
|
111
|
+
class #{class_name.camelize}Type < Souls::Types::BaseObject
|
|
112
112
|
field :response, String, null: true
|
|
113
113
|
end
|
|
114
114
|
end
|
data/lib/souls/version.rb
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.13.
|
|
1
|
+
1.13.4
|
|
@@ -1 +1 @@
|
|
|
1
|
-
1.13.
|
|
1
|
+
1.13.4
|