souls 1.14.2 → 1.14.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/create/template/functions_app.rb +0 -1
- data/lib/souls/cli/create/template/functions_gemfile.rb +0 -1
- data/lib/souls/cli/gcloud/functions/index.rb +14 -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 +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 307c03a9709bb93fa10b1c01c3aeef9195998851d3911cd82e9caf15bdf681e6
|
|
4
|
+
data.tar.gz: 73e46b801ed06da8633ba90f26a4614adbc0bcc1421b23eab9fae4b2f46fe978
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0cb923fdc7f81864b921b1c6d02ff39512ed972826281c64e8e93da4232f8c9071b48e6266f0642baec145f66d6bbc377e1c91f6573f6623f5c160d202fb57d9
|
|
7
|
+
data.tar.gz: 727b4134dc221130f6af878677b0d6ec666748ec319aa03970b2e5093f62c33d549b1f46ca78ed2d83be918b97619a3f385ffb736fe30fafe4ee132921d552bf
|
|
@@ -14,6 +14,20 @@ module Souls
|
|
|
14
14
|
end
|
|
15
15
|
end
|
|
16
16
|
|
|
17
|
+
desc "describe", "Describe SOULs Functions"
|
|
18
|
+
def describe
|
|
19
|
+
require(Souls.get_mother_path.to_s + "/config/souls")
|
|
20
|
+
project_id = Souls.configuration.project_id
|
|
21
|
+
system("gcloud functions describe souls_functions --project=#{project_id}")
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
desc "url", "Get SOULs Functions URL"
|
|
25
|
+
def url
|
|
26
|
+
require(Souls.get_mother_path.to_s + "/config/souls")
|
|
27
|
+
project_id = Souls.configuration.project_id
|
|
28
|
+
system("gcloud functions describe souls_functions --project=#{project_id}| grep url")
|
|
29
|
+
end
|
|
30
|
+
|
|
17
31
|
desc "dev", "Check SOULs Functions dev"
|
|
18
32
|
def dev
|
|
19
33
|
Dir.chdir(Souls.get_functions_path.to_s) do
|
data/lib/souls/version.rb
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.14.
|
|
1
|
+
1.14.3
|
|
@@ -1 +1 @@
|
|
|
1
|
-
1.14.
|
|
1
|
+
1.14.3
|