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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8308615df78c8c6ebe073fdbab2cd67b62cd2b793eb50a34f3849d74f6c22424
4
- data.tar.gz: 36b68ae49c525c4ad70a20ca7da086298c3563a3ef039e1cfb5749710a988146
3
+ metadata.gz: 307c03a9709bb93fa10b1c01c3aeef9195998851d3911cd82e9caf15bdf681e6
4
+ data.tar.gz: 73e46b801ed06da8633ba90f26a4614adbc0bcc1421b23eab9fae4b2f46fe978
5
5
  SHA512:
6
- metadata.gz: 2a4bdc4ab3b391b6a863a3a993301953adacdbe2fa3415b896c4b9ada0f55d12a038a27039bb2cdb928f8401e0f40667fda34c0172f4f1c727e4784100201a78
7
- data.tar.gz: fa8dddbc20ea584a313074acf14194d0ac4628c01aaf29927def9b14a82d04aa547b9ac77190be3b8450115b6131269cf8bff43504a7c42c9ba319ce7fc2111d
6
+ metadata.gz: 0cb923fdc7f81864b921b1c6d02ff39512ed972826281c64e8e93da4232f8c9071b48e6266f0642baec145f66d6bbc377e1c91f6573f6623f5c160d202fb57d9
7
+ data.tar.gz: 727b4134dc221130f6af878677b0d6ec666748ec319aa03970b2e5093f62c33d549b1f46ca78ed2d83be918b97619a3f385ffb736fe30fafe4ee132921d552bf
@@ -4,7 +4,6 @@ module Template
4
4
  require "functions_framework"
5
5
  require "sinatra/base"
6
6
  require "dotenv/load"
7
- require "souls"
8
7
 
9
8
  class App < Sinatra::Base
10
9
  get "/souls-functions-get/:name" do
@@ -6,7 +6,6 @@ module Template
6
6
  gem "dotenv", "2.7.6"
7
7
  gem "functions_framework", "~> 0.7"
8
8
  gem "sinatra", "2.1.0"
9
- gem "souls", "#{Souls::VERSION}"
10
9
 
11
10
  GEMFILE
12
11
  end
@@ -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,4 +1,4 @@
1
1
  module Souls
2
- VERSION = "1.14.2".freeze
2
+ VERSION = "1.14.3".freeze
3
3
  public_constant :VERSION
4
4
  end
@@ -1 +1 @@
1
- 1.14.2
1
+ 1.14.3
@@ -1 +1 @@
1
- 1.14.2
1
+ 1.14.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.14.2
4
+ version: 1.14.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - POPPIN-FUMI