souls 1.10.3 → 1.10.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 +4 -4
- data/CODE_OF_CONDUCT.md +1 -1
- data/README.md +0 -7
- data/lib/souls/cli/delete/rspec_mutation.rb +0 -2
- data/lib/souls/cli/gcloud/sql/index.rb +6 -6
- data/lib/souls/cli/generate/manager.rb +1 -0
- data/lib/souls/version.rb +1 -1
- data/lib/souls/versions/.souls_api_version +1 -1
- data/lib/souls/versions/.souls_worker_version +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fa6220fd948d6e29a5a3bce93ee00a152dde8067a73f7e9159495fbb16fd5bcd
|
|
4
|
+
data.tar.gz: 122f1c303883c441d911de3fa0cbe067cf7b703d1afa1e54dcdd90f9708531f5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5b12467ee5c2c662e0ea007d73d4518b940f70721ff4da637bb4dcef19ca182f2d71b0e6da38f578567c50e549c5b433fff1967d788d222653a07ae3b0a28a72
|
|
7
|
+
data.tar.gz: 88e8cd539c7e1192354e4d272d6822bdc65bd2a3da558c4984d254c08f8fc2c600f001911855d7586abe66c6246a99e94006047f166d7dd0095edd2854e36868
|
data/CODE_OF_CONDUCT.md
CHANGED
|
@@ -61,7 +61,7 @@ representative at an online or offline event.
|
|
|
61
61
|
|
|
62
62
|
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
63
63
|
reported to the community leaders responsible for enforcement at
|
|
64
|
-
|
|
64
|
+
conduct@elsoul.nl.
|
|
65
65
|
All complaints will be reviewed and investigated promptly and fairly.
|
|
66
66
|
|
|
67
67
|
All community leaders are obligated to respect the privacy and security of the
|
data/README.md
CHANGED
|
@@ -115,13 +115,6 @@ Or install it yourself as:
|
|
|
115
115
|
And Create Your APP
|
|
116
116
|
|
|
117
117
|
$ souls new app_name
|
|
118
|
-
$ cd apps/api/app_name
|
|
119
|
-
$ souls s
|
|
120
|
-
|
|
121
|
-
Check your GraphQL PlayGround
|
|
122
|
-
|
|
123
|
-
[localhost:4000/playground](localhost:4000/playground)
|
|
124
|
-
|
|
125
118
|
|
|
126
119
|
|
|
127
120
|
## Development
|
|
@@ -95,12 +95,12 @@ module Souls
|
|
|
95
95
|
project_id = Souls.configuration.project_id
|
|
96
96
|
system(
|
|
97
97
|
"
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
98
|
+
gcloud services vpc-peerings connect \
|
|
99
|
+
--service=servicenetworking.googleapis.com \
|
|
100
|
+
--ranges=#{app_name}-ip-range \
|
|
101
|
+
--network=#{app_name} \
|
|
102
|
+
--project=#{project_id}
|
|
103
|
+
"
|
|
104
104
|
)
|
|
105
105
|
end
|
|
106
106
|
|
|
@@ -3,6 +3,7 @@ module Souls
|
|
|
3
3
|
desc "manager [MANAGER_NAME]", "Generate GraphQL Mutation Template"
|
|
4
4
|
method_option :mutation, aliases: "--mutation", required: true, desc: "Mutation File Name"
|
|
5
5
|
def manager(class_name)
|
|
6
|
+
singularized_class_name = class_name.underscore.singularize
|
|
6
7
|
create_manager(class_name, options[:mutation])
|
|
7
8
|
Souls::Generate.new.invoke(:manager_rbs, [singularized_class_name], { mutation: options[:mutation] })
|
|
8
9
|
Souls::Generate.new.invoke(:rspec_manager, [singularized_class_name], { mutation: options[:mutation] })
|
data/lib/souls/version.rb
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.10.
|
|
1
|
+
1.10.4
|
|
@@ -1 +1 @@
|
|
|
1
|
-
1.10.
|
|
1
|
+
1.10.4
|
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.10.
|
|
4
|
+
version: 1.10.4
|
|
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-
|
|
13
|
+
date: 2021-12-08 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: activesupport
|