souls 0.53.3 → 0.53.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: e40337225252207ee584a0792eb682563c6ff954e52f3e5da2f149556472028d
4
- data.tar.gz: 4ea2367b590925117d927bf9e0098d11d93e0ad8e407f48dad8a630628147cb9
3
+ metadata.gz: 564e0bedd2c3f6d26daad5f9bc4307051b042ce2867e16fe0667372e70b3b432
4
+ data.tar.gz: 5a4fef479822068f0e49405c7b5b974adfe9c68845681454e6ec0a2d1aa35904
5
5
  SHA512:
6
- metadata.gz: 15c47b58b66cf2a6765baca1027580ab3850ca8687c8e443323a1d37f1026a70c148184d86eb39d550e0f053765e63c8b53b493a700d7ceea9fdad7305fdef2c
7
- data.tar.gz: cc5b188f99c0a82572c9a4f3abefd1ec743d3e973111a329b7765737967c90d8cee5f9cd58dcd4b8ff68c3f8ac771022142b97ca55584d87a1dc96579c972133
6
+ metadata.gz: 467f58902722373ee1ee48af87a1b59383d4f71117c64a9242118b487aca907384fc5d8c9c5128f358852c6d29090de7274eb8719e7780e0e5d150e91d976920
7
+ data.tar.gz: 23b9061872e797e8e6803848e21dc30a29919519f4b929776aee8d87ae95e7b41cde8aa5a0fade7f8723a571cbb7d09ea934f172ced208f830c3d3af943f9a65
@@ -32,6 +32,12 @@ module Souls
32
32
  raise(Thor::Error, e)
33
33
  end
34
34
 
35
+ desc "config_set", "gcloud config set"
36
+ def config_set
37
+ project_id = Souls.configuration.project_id
38
+ system("gcloud config set project #{project_id}")
39
+ end
40
+
35
41
  desc "enable_permissions", "Enable Google Cloud APIs for SOULs Framework"
36
42
  def enable_permissions
37
43
  system("gcloud services enable compute.googleapis.com")
@@ -13,8 +13,8 @@ module Souls
13
13
  end
14
14
 
15
15
  desc "list", "Show Google Cloud Run List"
16
- def list(project_id: "")
17
- project_id = Souls.configuration.project_id if project_id.blank?
16
+ def list
17
+ project_id = Souls.configuration.project_id
18
18
  system("gcloud run services list --project #{project_id} --platform managed")
19
19
  rescue Thor::Error => e
20
20
  raise(Thor::Error, e)
@@ -22,8 +22,9 @@ module Souls
22
22
 
23
23
  desc "get_endpoint", "Show Worker's Endpoint"
24
24
  def get_endpoint(worker_name: "")
25
- project_id = Souls.configuration.project_id if project_id.blank?
26
- `gcloud run services list --project #{project_id} --platform managed | grep #{worker_name} | awk '{print $4}'`
25
+ app_name = Souls.configuration.app
26
+ project_id = Souls.configuration.project_id
27
+ `gcloud run services list --project #{project_id} --platform managed | grep #{app_name}-souls-#{worker_name} | awk '{print $4}'`
27
28
  rescue Thor::Error => e
28
29
  raise(Thor::Error, e)
29
30
  end
@@ -2,6 +2,7 @@ module Souls
2
2
  class Sync < Thor
3
3
  desc "conf", "Sync config/souls.rb Endpoint with Google Cloud Run"
4
4
  def conf
5
+ Souls::Gcloud.new.config_set
5
6
  update_conf
6
7
  update_conf(strain: "api")
7
8
  puts(
@@ -2,6 +2,7 @@ module Souls
2
2
  class Sync < Thor
3
3
  desc "pubsub", "Sync Worker Jobs & Google Cloud Pubsub Subscriptions"
4
4
  def pubsub
5
+ Souls::Gcloud.new.config_set
5
6
  get_topics(workers: get_workers)
6
7
  puts(Paint["All Jobs Synced with PubSub Subscription!", :green])
7
8
  rescue Thor::Error => e
data/lib/souls/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Souls
2
- VERSION = "0.53.3".freeze
2
+ VERSION = "0.53.4".freeze
3
3
  public_constant :VERSION
4
4
  end
@@ -1 +1 @@
1
- 0.32.3
1
+ 0.32.4
@@ -1 +1 @@
1
- 0.32.3
1
+ 0.32.4
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: souls
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.53.3
4
+ version: 0.53.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - POPPIN-FUMI
8
8
  - KishiTheMechanic
9
9
  - James Neve
10
- autorequire:
10
+ autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2021-09-20 00:00:00.000000000 Z
13
+ date: 2021-09-21 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activesupport
@@ -192,7 +192,7 @@ metadata:
192
192
  homepage_uri: https://souls.elsoul.nl
193
193
  source_code_uri: https://github.com/elsoul/souls
194
194
  changelog_uri: https://github.com/elsoul/souls
195
- post_install_message:
195
+ post_install_message:
196
196
  rdoc_options: []
197
197
  require_paths:
198
198
  - lib
@@ -208,7 +208,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
208
208
  version: '0'
209
209
  requirements: []
210
210
  rubygems_version: 3.2.22
211
- signing_key:
211
+ signing_key:
212
212
  specification_version: 4
213
213
  summary: SOULs はサーバーレスフルスタックフレームワークです。柔軟な Ruby GraphQL API と Worker はルーティングの必要がありません。
214
214
  クラウド環境への自動デプロイ、CI/CD ワークフローを標準装備。開発者がビジネスロジックに集中し、楽しくコードが書けるような環境を目指しています。