souls 1.13.6 → 1.13.7

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: 1a118ef08a3774a66d30e0dc99084579a1806d60abd43503f131f57705e6fe08
4
- data.tar.gz: cc2bcff6cd1aa810da5adf7576484e00cf1d7439539a6500da95575182a31ce3
3
+ metadata.gz: 3fc7f40511ec0965a0719e497483a38260310725555a29d0898a9cebc0ed2e1d
4
+ data.tar.gz: 631eb79cda3828b4bdfa87631a5135433c984c2a50a6afc9bbca5b7a23631746
5
5
  SHA512:
6
- metadata.gz: 0f3c4227abd7e591219a0547b53af58091c9287c8ea9accb58e7a621d19c0f6b9c5b8e8029d564567cd163e478619fa65227551ddc853e5ae69dd4e05e3cdc79
7
- data.tar.gz: 4d26b93f0548b80c245adc9ee531299d65b26748da5389927d0724a1043cb4c9d6d5903ab687dbfd79a89b8c8d364f4a09cd85f8bd5698c40eb4b770afbae0d9
6
+ metadata.gz: 813388aae1bfd538bb2546a3e83c471a1b40ca53ff25ba873ed70bb4775695481055e9da0eed6f5f786051aff32adb4423ee333e9ada7e41a0d0414b8d2cc30a
7
+ data.tar.gz: d7aaf5a388ccb022b6c2e4bc076146d23da566bac28b2276c0e1a5d9899464905e6dc9825cf2ee5ee678b73db1b0885698e4caef6dc777e91fb3947dd778c64f
@@ -61,11 +61,11 @@ module Souls
61
61
  case options[:env]
62
62
  when "production"
63
63
  db_system("rake db:migrate:reset RACK_ENV=production DISABLE_DATABASE_ENVIRONMENT_CHECK=1")
64
- db_system("rake db seed RACK_ENV=production")
64
+ db_system("rake db:seed RACK_ENV=production")
65
65
  else
66
66
  db_system("rake db:migrate:reset")
67
67
  db_system("rake db:migrate RACK_ENV=test")
68
- db_system("rake db seed")
68
+ db_system("rake db:seed")
69
69
  end
70
70
  end
71
71
 
@@ -13,8 +13,8 @@ module Souls
13
13
  f.write(<<~TEXT)
14
14
  module Mutations
15
15
  module Managers
16
- module #{singularized_class_name.camelize}Manager < BaseMutation
17
- class #{options[:mutation].singularize.camelize}
16
+ module #{singularized_class_name.camelize}Manager
17
+ class #{options[:mutation].singularize.camelize} < BaseMutation
18
18
  def self.description: (String)-> untyped
19
19
  def self.argument: (untyped, untyped, untyped)-> untyped
20
20
  def self.field: (untyped, untyped, untyped)-> untyped
@@ -16,7 +16,9 @@ module Souls
16
16
 
17
17
  let(:mutation) do
18
18
  %(mutation {
19
- #{options[:mutation].singularize.camelize(:lower)}(input: {}) {
19
+ #{options[:mutation].singularize.camelize(:lower)}(input: {
20
+ argument: "argument test!"
21
+ }) {
20
22
  response
21
23
  }
22
24
  }
data/lib/souls/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Souls
2
- VERSION = "1.13.6".freeze
2
+ VERSION = "1.13.7".freeze
3
3
  public_constant :VERSION
4
4
  end
@@ -1 +1 @@
1
- 1.13.6
1
+ 1.13.7
@@ -1 +1 @@
1
- 1.13.6
1
+ 1.13.7
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: souls
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.6
4
+ version: 1.13.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - POPPIN-FUMI
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2021-12-21 00:00:00.000000000 Z
13
+ date: 2021-12-22 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activesupport