faastruby 0.5.18 → 0.5.19
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/Gemfile.lock +4 -4
- data/lib/faastruby/cli/commands/project/deploy.rb +1 -1
- data/lib/faastruby/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 046d0271b8826abfd5121470bc44e9c3a6c3b38917a49790a4f3d79175195277
|
4
|
+
data.tar.gz: 00a4f44e6ac51175db2aeac4dccc510fa11631733a6e497850cc731870fc67ef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1549dfe56b23b4c6572bfd11fcde694db2be9aa95e00b753e5b0f6d83810d4d72d0ae7658df35fa5a6a45a46bb7a739da83ef0a9f97efec90b344b1bc95cdba7
|
7
|
+
data.tar.gz: 3b4a8780e15665f3e26db87f2650e5b35ac09170c74d504cfd20de8924e1518950a2ffb1e79b7e714f05a9da2961a6a9180aa9cb45794532662dfd8c5ee40de3
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
faastruby (0.5.
|
4
|
+
faastruby (0.5.19)
|
5
5
|
colorize (~> 0.8)
|
6
|
-
faastruby-rpc (~> 0.2.
|
6
|
+
faastruby-rpc (~> 0.2.6)
|
7
7
|
listen (~> 3.1)
|
8
8
|
oj (~> 3.6)
|
9
9
|
puma (~> 3.12)
|
@@ -30,7 +30,7 @@ GEM
|
|
30
30
|
unf (>= 0.0.5, < 1.0.0)
|
31
31
|
equatable (0.5.0)
|
32
32
|
erubis (2.7.0)
|
33
|
-
faastruby-rpc (0.2.
|
33
|
+
faastruby-rpc (0.2.6)
|
34
34
|
oj (~> 3.6)
|
35
35
|
ffi (1.10.0)
|
36
36
|
hashdiff (0.3.7)
|
@@ -52,7 +52,7 @@ GEM
|
|
52
52
|
equatable (~> 0.5.0)
|
53
53
|
tty-color (~> 0.4.0)
|
54
54
|
public_suffix (3.0.3)
|
55
|
-
puma (3.12.
|
55
|
+
puma (3.12.1)
|
56
56
|
rack (2.0.6)
|
57
57
|
rack-protection (2.0.5)
|
58
58
|
rack
|
@@ -18,7 +18,7 @@ module FaaStRuby
|
|
18
18
|
@options['functions'] += find_functions unless @options['functions'].any?
|
19
19
|
@options['environment'] ||= 'stage'
|
20
20
|
@project_yaml = YAML.load(File.read(PROJECT_YAML_FILE))['project'] rescue FaaStRuby::CLI.error("Could not find file 'project.yml'. Are you running this command from the project's folder?")
|
21
|
-
@project_secrets = YAML.load(File.read(PROJECT_SECRETS_FILE))['secrets']
|
21
|
+
@project_secrets = (YAML.load(File.read(PROJECT_SECRETS_FILE))['secrets'] || {}) rescue {}
|
22
22
|
@project_name = @project_yaml['name']
|
23
23
|
@root_to = @project_yaml['root_to'] || 'root'
|
24
24
|
@catch_all = @project_yaml['catch_all'] || 'catch-all'
|
data/lib/faastruby/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: faastruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.19
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Paulo Arruda
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-03-
|
11
|
+
date: 2019-03-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|