souls 1.8.2 → 1.8.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f741731a723bdab3f07a66283c1b436a3c74dd591dc0328f3509125cef72c5c6
4
- data.tar.gz: 8599c47a3b32db14fb9e8c7d90e107b18533a23bd3c94f0d31996b2dc42417e1
3
+ metadata.gz: d55dd599d811c4fa2007380b12599204103f19911d9b44f1b68bf108037d9a9f
4
+ data.tar.gz: 32c348a47de83e9be4a7af1fdf320041b7e5e32636832add8e679957cece7ebb
5
5
  SHA512:
6
- metadata.gz: 4cc4e5624a3f369567d5b87615047320a5924394ee81df055e6bd120062b5756d8ba532f8cb4cebc501b38dc9ca6c9474785477b5c3d6ff530fc7beb69fad880
7
- data.tar.gz: b4f26cb19a20d14190cbe587f717eeff988fc7aa3ac9024c340f14d3fe90aeab5348145b0138504343bcafc15408f06d47fb411b1d0c97c9239251d3b0edcc10
6
+ metadata.gz: '099dd03104a52ae91c08c09e7287a0b0373ecc784c0a6728ef20d75f9917525dbb040217975895ae456a518c7519c58c0b987f864037bd842facd3c8502eaddb'
7
+ data.tar.gz: 8ed5c22f34b5741a2487df2016ddaa40530a16900acfdf216c671219cdc5db1281405e0a4f42bc10144b45d6e3d1e49d0e5bfbb092acfdbdaaf29ced739250f2
@@ -14,16 +14,14 @@ module Souls
14
14
 
15
15
  desc "list", "Show Google Cloud Run List"
16
16
  def list
17
- project_id = Souls.configuration.project_id
18
- system("gcloud run services list --project #{project_id} --platform managed")
17
+ system("gcloud run services list --platform managed")
19
18
  rescue Thor::Error => e
20
19
  raise(Thor::Error, e)
21
20
  end
22
21
 
23
22
  desc "get_endpoint", "Show Worker's Endpoint"
24
23
  def get_endpoint(worker_name: "")
25
- project_id = Souls.configuration.project_id
26
- `gcloud run services list --project #{project_id} | grep #{worker_name} | awk '{print $4}'`
24
+ `gcloud run services list --platform managed | grep #{worker_name} | awk '{print $4}'`
27
25
  rescue Thor::Error => e
28
26
  raise(Thor::Error, e)
29
27
  end
data/lib/souls/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Souls
2
- VERSION = "1.8.2".freeze
2
+ VERSION = "1.8.3".freeze
3
3
  public_constant :VERSION
4
4
  end
@@ -1 +1 @@
1
- 1.8.2
1
+ 1.8.3
@@ -1 +1 @@
1
- 1.8.2
1
+ 1.8.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.8.2
4
+ version: 1.8.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - POPPIN-FUMI