souls 1.12.2 → 1.12.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/lib/souls/cli/gcloud/iam/index.rb +6 -1
- data/lib/souls/cli/gcloud/sql/index.rb +1 -1
- data/lib/souls/cli/generate/manager.rb +6 -3
- data/lib/souls/cli/upgrade/config.rb +3 -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: 22bd0690d5121d4f11bed28a92e1d9c03e6965516d42ab7544c6db31996b940e
|
|
4
|
+
data.tar.gz: b18f61e986e2825539ee6cc9d02d81491eb1361ed061d0fb03fb6dc7564185ec
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9d630af0345983d357228b17af112729f83bc089a19c19fbbec8f18abfe5b1b99149d0bd8b275938eb4168b5f768dd064cb7f739867bd830a2671878adbd05d2
|
|
7
|
+
data.tar.gz: e96568446f6e113b8d57303391485216b4df835cc052b24bcf0701b984e2914c534ef1f1347eb17fbc79842a489faeafe781660a7ba4f90ea58e6a003bf0032a
|
|
@@ -4,11 +4,16 @@ module Souls
|
|
|
4
4
|
def setup_key
|
|
5
5
|
region = Souls.configuration.region
|
|
6
6
|
Souls::Gcloud.new.auth_login
|
|
7
|
+
Souls::Upgrade.new.config
|
|
7
8
|
create_service_account
|
|
8
9
|
create_service_account_key
|
|
9
10
|
Souls::Gcloud.new.enable_permissions
|
|
10
11
|
add_permissions
|
|
11
|
-
|
|
12
|
+
begin
|
|
13
|
+
system("gcloud app create --region=#{region} --quiet")
|
|
14
|
+
rescue StandardError, error
|
|
15
|
+
puts("gcloud app region is Already exist! - Souls::Gcloud::Iam.setup_key")
|
|
16
|
+
end
|
|
12
17
|
begin
|
|
13
18
|
set_gh_secret_json
|
|
14
19
|
rescue StandardError
|
|
@@ -13,7 +13,7 @@ module Souls
|
|
|
13
13
|
db_type = options[:mysql] ? "MYSQL_8_0" : "POSTGRES_13"
|
|
14
14
|
|
|
15
15
|
zone = "#{region}-b"
|
|
16
|
-
system("gcloud config set project #{project_id}")
|
|
16
|
+
system("gcloud config set project #{project_id} >/dev/null 2>&1")
|
|
17
17
|
system(
|
|
18
18
|
"gcloud sql instances create #{instance_name} \
|
|
19
19
|
--database-version=#{db_type} --cpu=1 --memory=4096MB --zone=#{zone} \
|
|
@@ -4,6 +4,11 @@ module Souls
|
|
|
4
4
|
method_option :mutation, aliases: "--mutation", required: true, desc: "Mutation File Name"
|
|
5
5
|
def manager(class_name)
|
|
6
6
|
singularized_class_name = class_name.underscore.singularize
|
|
7
|
+
current_path = FileUtils.pwd
|
|
8
|
+
unless current_path.split("/").last == "api" || current_path.split("/").last == "souls"
|
|
9
|
+
raise(StandardError, "You Are at Wrong Directory! Please Go to Api Directory!")
|
|
10
|
+
end
|
|
11
|
+
|
|
7
12
|
create_manager(class_name, options[:mutation])
|
|
8
13
|
Souls::Generate.new.invoke(:manager_rbs, [singularized_class_name], { mutation: options[:mutation] })
|
|
9
14
|
Souls::Generate.new.invoke(:rspec_manager, [singularized_class_name], { mutation: options[:mutation] })
|
|
@@ -25,15 +30,13 @@ module Souls
|
|
|
25
30
|
class #{mutation.underscore.camelize} < BaseMutation
|
|
26
31
|
description "#{mutation} description"
|
|
27
32
|
## Edit `argument` and `field`
|
|
28
|
-
argument :argument, String, required:
|
|
33
|
+
argument :argument, String, required: false
|
|
29
34
|
|
|
30
35
|
field :response, String, null: false
|
|
31
36
|
|
|
32
37
|
def resolve(args)
|
|
33
38
|
# Define Here
|
|
34
39
|
{ response: "success!" }
|
|
35
|
-
rescue StandardError => e
|
|
36
|
-
GraphQL::ExecutionError.new(e.message)
|
|
37
40
|
end
|
|
38
41
|
end
|
|
39
42
|
end
|
data/lib/souls/version.rb
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.12.
|
|
1
|
+
1.12.3
|
|
@@ -1 +1 @@
|
|
|
1
|
-
1.12.
|
|
1
|
+
1.12.3
|
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.12.
|
|
4
|
+
version: 1.12.3
|
|
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-12 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: activesupport
|