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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5c5a4bcb83a358f5100f329a36f5cbe052a6a9e3eb085aed3fe04bdbcd5f62da
4
- data.tar.gz: ac614dec04fb647cecee6abf8b5846c1097323d35ad5ba98b424149dabec1e5a
3
+ metadata.gz: 046d0271b8826abfd5121470bc44e9c3a6c3b38917a49790a4f3d79175195277
4
+ data.tar.gz: 00a4f44e6ac51175db2aeac4dccc510fa11631733a6e497850cc731870fc67ef
5
5
  SHA512:
6
- metadata.gz: 734eb6a83509dc4b2ddcdee49846d360d39ea36499424b98a4ba538130de7528153e4c680cba7754ddd9a3527b2440f93fb085710b301a4402e01678fc921229
7
- data.tar.gz: 89435a82075fd0806b2f2434177e598ce1910f5fe0a57ff3a873868cc3157f669ec9b082cfa7260c6fd8c2d75e58dd1acce49da0301b12fffa70e44c2649bb5d
6
+ metadata.gz: 1549dfe56b23b4c6572bfd11fcde694db2be9aa95e00b753e5b0f6d83810d4d72d0ae7658df35fa5a6a45a46bb7a739da83ef0a9f97efec90b344b1bc95cdba7
7
+ data.tar.gz: 3b4a8780e15665f3e26db87f2650e5b35ac09170c74d504cfd20de8924e1518950a2ffb1e79b7e714f05a9da2961a6a9180aa9cb45794532662dfd8c5ee40de3
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.5.19 - Mar 20 2019
4
+ - Fix bug preventing `faastruby deploy` from working when secrets are nil
5
+
3
6
  ## 0.5.18 - Mar 19 2019
4
7
  - Reverted changes from 0.5.17
5
8
  - Refactored headers parsing
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- faastruby (0.5.16)
4
+ faastruby (0.5.19)
5
5
  colorize (~> 0.8)
6
- faastruby-rpc (~> 0.2.5)
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.5)
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.0)
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'] rescue {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'
@@ -1,3 +1,3 @@
1
1
  module FaaStRuby
2
- VERSION = '0.5.18'
2
+ VERSION = '0.5.19'
3
3
  end
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.18
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-19 00:00:00.000000000 Z
11
+ date: 2019-03-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client