souls 1.11.7 → 1.12.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 19a2f6ed563280fb6f585ca4e713ce05e05b498f225c55719fd106b356c9d221
4
- data.tar.gz: c319d472b4026b673ebd89eee57ad927387445387b0adfb6aed190649aa412d7
3
+ metadata.gz: 22bd0690d5121d4f11bed28a92e1d9c03e6965516d42ab7544c6db31996b940e
4
+ data.tar.gz: b18f61e986e2825539ee6cc9d02d81491eb1361ed061d0fb03fb6dc7564185ec
5
5
  SHA512:
6
- metadata.gz: 71bb839aa16e0d8faabcc6416563f30c63aacede2813956396304ef6c1c79bcd5fd9f6a7ada3ae479aaa2c37b8b43779cd4dea3bd31112f7772e92ff1666d8c1
7
- data.tar.gz: 47acb4944bc0d9146ffb94aa56cb6278b2f9a23a4c80d8300a567a9315a814d3569c0a4935f50f9a2290a1799e00dab3b6de3413d40a21190145ba2930643d95
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
- system("gcloud app create --region=#{region} --quiet")
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
@@ -18,7 +18,7 @@ module Souls
18
18
  project_id = Souls.configuration.project_id
19
19
 
20
20
  schedules_list = current_schedules
21
-
21
+ worker_name = FileUtils.pwd.split("/").last
22
22
  Queries::BaseQuery.all_schedules.each do |k, v|
23
23
  worker_name = FileUtils.pwd.split("/").last
24
24
  job_name = "souls_#{worker_name}_#{k.to_s.underscore}".to_sym
@@ -43,7 +43,7 @@ module Souls
43
43
  end
44
44
 
45
45
  schedules_list.each do |k, _|
46
- next unless k.match?(/^souls_/)
46
+ next unless k.match?(/^souls_#{worker_name}/)
47
47
 
48
48
  system("gcloud scheduler jobs delete #{k} -q >/dev/null 2>&1")
49
49
  end
@@ -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: true
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
@@ -25,7 +25,7 @@ module Souls
25
25
  update_api_env(key: key, value: value, dqm: options[:dqm])
26
26
  update_workers_env(key: key, value: value, dqm: options[:dqm])
27
27
  update_github_actions(key: key)
28
- Souls::Github.new.invoke(:secret_set)
28
+ system("gh secret set #{key} -b \"#{value.strip}\"")
29
29
  end
30
30
 
31
31
  desc "watch", "Watch GitHub Actions Workflow"
@@ -104,7 +104,7 @@ module Souls
104
104
  file_paths.each do |file_path|
105
105
  worker_workflow = File.readlines(file_path)
106
106
  worker_workflow[worker_workflow.size - 1] = worker_workflow.last.chomp
107
- worker_workflow << " \\ \n --set-env-vars=\"#{key.upcase}=${{ secrets.#{key.upcase} }}\""
107
+ worker_workflow << " \\\n --set-env-vars=\"#{key.upcase}=${{ secrets.#{key.upcase} }}\""
108
108
  File.open(file_path, "w") { |f| f.write(worker_workflow.join) }
109
109
  puts(Paint % ["Updated file! : %{white_text}", :green, { white_text: [file_path.to_s, :white] }])
110
110
  end
@@ -25,5 +25,8 @@ module Souls
25
25
  File.open(api_conf_path, "w") { |f| f.write(api_conf.join) }
26
26
  end
27
27
  end
28
+ # rubocop:disable Style/StringHashKeys
29
+ map "conf" => "config"
30
+ # rubocop:enable Style/StringHashKeys
28
31
  end
29
32
  end
data/lib/souls/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Souls
2
- VERSION = "1.11.7".freeze
2
+ VERSION = "1.12.3".freeze
3
3
  public_constant :VERSION
4
4
  end
@@ -1 +1 @@
1
- 1.11.7
1
+ 1.12.3
@@ -1 +1 @@
1
- 1.11.7
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.11.7
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-10 00:00:00.000000000 Z
13
+ date: 2021-12-12 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activesupport