souls 0.11.2 → 0.11.3
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/Gemfile.lock +1 -1
- data/lib/souls/init.rb +1 -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: ac62e7ceab027e6712c2f49a1006467634b695c94277532d995abfe8b84b06d5
|
|
4
|
+
data.tar.gz: b9a7d9be1893112f1ed88c10246addcf65b1324fbe38c88341ea165e1dbfeb95
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a8d541ba1c46c4419c0599a38be3ad060c3630e50768ac19d598d4324b9ed38c80be49e67aacb307179f091a0543c64853d1563a51b0bdaeefa1f2d3b4d9cf99
|
|
7
|
+
data.tar.gz: 2be11c59ff026d0cd1a33d897772e03a8e1839feba4d0b01ffb44f7ec8b37ac5b6d3e76dc7a7c2bdd8bd1edfc4bafa6fd5f039875d6b9aa5d9f204a2f8f639d2
|
data/Gemfile.lock
CHANGED
data/lib/souls/init.rb
CHANGED
|
@@ -778,11 +778,10 @@ end
|
|
|
778
778
|
RSpec.describe \"#{class_name.camelize} Query テスト\" do
|
|
779
779
|
describe "#{class_name.camelize} データを取得する" do
|
|
780
780
|
let!(:#{class_name.singularize.underscore}) { FactoryBot.create(:#{class_name.singularize.underscore}) }
|
|
781
|
-
let!(:#{class_name.singularize.underscore}_id) { Base64.encode64 "User:\#{user.id}" }
|
|
782
781
|
|
|
783
782
|
let(:query) do
|
|
784
783
|
%(query {
|
|
785
|
-
#{class_name.singularize.underscore}(id:
|
|
784
|
+
#{class_name.singularize.underscore}(id: \#{Base64.encode64("#{class_name.camelize}:\#{user.id}")}) {
|
|
786
785
|
id
|
|
787
786
|
EOS
|
|
788
787
|
end
|
data/lib/souls/version.rb
CHANGED