souls 0.11.4 → 0.11.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 +4 -4
- data/lib/souls/init.rb +3 -3
- data/lib/souls/version.rb +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: 4f1681486df5b3189aacfdc97ea729ec7e1e4dce2830ee5c48cf9cb197015584
|
|
4
|
+
data.tar.gz: 25bdc7b30c83f34b729cf5085709faf13ae502c78d74fd3dfc6b121995695e4e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3c43772368fd98a3ba0b37865bf49093f723c7be65a2e09e5dcaaa66643ebcfd5b4717766f3ee4cab61f6683d44041179ffb019a6bb2f42e47833685f6e0dad0
|
|
7
|
+
data.tar.gz: 68f587a562956aed0694c568af0971c7c6661c1d5ea602134cf9a4ee230db1352a322a8864a2a712de12400e7fc313f31cbeb5131becbb2d0c9e92f88458a21c
|
data/lib/souls/init.rb
CHANGED
|
@@ -640,7 +640,7 @@ module Souls
|
|
|
640
640
|
end
|
|
641
641
|
|
|
642
642
|
def rspec_mutation_params class_name: "souls"
|
|
643
|
-
file_path = "./spec/mutations/#{class_name.
|
|
643
|
+
file_path = "./spec/mutations/#{class_name.singularize}_spec.rb"
|
|
644
644
|
path = "./db/schema.rb"
|
|
645
645
|
@on = false
|
|
646
646
|
File.open(file_path, "a") do |new_line|
|
|
@@ -675,7 +675,7 @@ module Souls
|
|
|
675
675
|
end
|
|
676
676
|
|
|
677
677
|
def rspec_mutation_params_response class_name: "souls"
|
|
678
|
-
file_path = "./spec/mutations/#{class_name.
|
|
678
|
+
file_path = "./spec/mutations/#{class_name.singularize}_spec.rb"
|
|
679
679
|
path = "./db/schema.rb"
|
|
680
680
|
@on = false
|
|
681
681
|
File.open(file_path, "a") do |new_line|
|
|
@@ -718,7 +718,7 @@ module Souls
|
|
|
718
718
|
end
|
|
719
719
|
|
|
720
720
|
def rspec_mutation_end class_name: "souls"
|
|
721
|
-
file_path = "./spec/mutations/#{class_name.
|
|
721
|
+
file_path = "./spec/mutations/#{class_name.singularize}_spec.rb"
|
|
722
722
|
path = "./db/schema.rb"
|
|
723
723
|
@on = false
|
|
724
724
|
File.open(file_path, "a") do |new_line|
|
data/lib/souls/version.rb
CHANGED