souls 0.12.0 → 0.12.1
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 +2 -2
- 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: f1179abce3ab4472e7028f3be44e5ab4568c003447c776e5979e03cfc7edddb7
|
|
4
|
+
data.tar.gz: 9bd83184ae101e2ec533eeeb928149b39bb59ff06c76ff3e8eb997ee96c8e783
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8b34b95ca8da120adef233e55d18878a37bd2d84b3a64c7ad5a2d23b48693284e5586c0220a0642f1baefe8d54782e5110ded6551705cc1bcdcb0a478f1688ae
|
|
7
|
+
data.tar.gz: d739cd296d71bf5e2b0f61628d2f4945d977e75f38f7087bf4ce3f9eef8c3d1d589b41d517400c233449f01fdecfab8668290a5a7858ad6ecbe01a2c9650ed68
|
data/lib/souls/init.rb
CHANGED
|
@@ -700,7 +700,7 @@ module Souls
|
|
|
700
700
|
end
|
|
701
701
|
|
|
702
702
|
it "return #{class_name.camelize} Data" do
|
|
703
|
-
a1 = result.dig("data", "create#{class_name.camelize}", "#{class_name.singularize}")
|
|
703
|
+
a1 = result.dig("data", "create#{class_name.singularize.camelize}", "#{class_name.singularize.camelize(:lower)}")
|
|
704
704
|
expect(a1).to include(
|
|
705
705
|
"id" => be_a(String),
|
|
706
706
|
EOS
|
|
@@ -813,7 +813,7 @@ end
|
|
|
813
813
|
end
|
|
814
814
|
|
|
815
815
|
it "return #{class_name.camelize} Data" do
|
|
816
|
-
a1 = result.dig("data", "#{class_name.singularize.
|
|
816
|
+
a1 = result.dig("data", "#{class_name.singularize.camelize(:lower)}")
|
|
817
817
|
expect(a1).to include(
|
|
818
818
|
"id" => be_a(String),
|
|
819
819
|
EOS
|
data/lib/souls/version.rb
CHANGED