souls 1.12.0 → 1.12.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1abe96b1a98b3f9bb7ea9627d80ed6a16571f076b5fff1e9fecef34a09d789cc
4
- data.tar.gz: 104add024a8c0aaa44f1b6beff35436a39df286f9462dae4a63aea28d121d71b
3
+ metadata.gz: 905daf343c9c3ca897b529099440456b2c2d8726b2506da4d6009060d0f9c9e6
4
+ data.tar.gz: 7e4b61a73885426c8c263ee8ded1f92057e924b937481559738c3d42ea9a0de6
5
5
  SHA512:
6
- metadata.gz: 507f51405d4ffc70df7094581f25c1eff0f2dcf46d7ecb9afbb68086f84f3c4f239dcd26f46fba1f03dfc72d1e7b365896620ec45f0db99eba1ef722ee0d29a8
7
- data.tar.gz: ce63b83025a33541ac9fabbffca76b98b5d2a9ae4ae0ca64031c29d81004344380557cb338158d2303f90b1acd1abfbaf1d58d21d11ef02cc95282e60aa9ca4b
6
+ metadata.gz: d4580035c9255f2a25c50dfd9fb9599232262011df7e37e9dc652f4efefadd54d23ffc256aae6e6d53d160b7570b9b594f5a3a296ed929684deacb54fe457ad3
7
+ data.tar.gz: 2686e9152e2df7ed4fd32516dc5ed8dcc3a9db72d32fcbc6990b2dbc5cba304785eb0d4bdbdcd48c33e18ec5dcad034935a45181ba3c07ec2a48ec15f7611509
@@ -1,3 +1,3 @@
1
1
  FirebaseIdToken.configure do |config|
2
- config.project_ids = [ENV["GCP_PROJECT_ID"]]
2
+ config.project_ids = [ENV["SOULS_GCP_PROJECT_ID"]]
3
3
  end
@@ -43,7 +43,7 @@ module Souls
43
43
 
44
44
  def self.write_log(message)
45
45
  entry = configuration.logger.entry
46
- entry.payload = "#{message}\n #{message.backtrace.join("\n")}"
46
+ entry.payload = message.backtrace.nil? ? "#{message}\n" : "#{message}\n #{message.backtrace.join("\n")}"
47
47
  entry.log_name = "error"
48
48
  entry.resource.type = "cloud_run_revision"
49
49
  entry.resource.labels[:service_name] = "souls"
@@ -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
@@ -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.12.0".freeze
2
+ VERSION = "1.12.4".freeze
3
3
  public_constant :VERSION
4
4
  end
@@ -1 +1 @@
1
- 1.12.0
1
+ 1.12.4
@@ -1 +1 @@
1
- 1.12.0
1
+ 1.12.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.12.0
4
+ version: 1.12.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-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