relishable 0.39 → 0.40

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
- SHA1:
3
- metadata.gz: 35876b791e70aff9d9bd2cae57b686a995650a6d
4
- data.tar.gz: e369614a2739ad284d12146bcd7ce7cacbab6712
2
+ SHA256:
3
+ metadata.gz: 34890ad56a53f91fbbfd6891d570c8e648ec07d95b1ce274f7e685a4b5386821
4
+ data.tar.gz: 2dd26c1a00f69b44e9774f60279f3bca37316d3b23d71e90da8aa66a976b7f22
5
5
  SHA512:
6
- metadata.gz: 7cf9b7d7eb5091d3877e2cb0dc4ffd59e82077f9c5d640e5ae226fbe3708b746b90e07fdb5b64cae834ff95601fe467718b7646de620d9486e1bb2aaeb0e9a46
7
- data.tar.gz: 9e9cb7448eedbfdb297dc40788fbf470785573aba962075ebd1c606259c91a9334661af4b4358194b7165f36057eeb3d5533897e53104d0ae1e2f5605ce6f00c
6
+ metadata.gz: d8efa76f83543601f038374960ed849884286b5288bf84837c8bed2b77230f7a948b22fb623520af6c5425aa61dd07ae1622b73eecaad917eb8f77cd12a612e7
7
+ data.tar.gz: 035c3615cde90904ebe3e6572bd5f290b4aa99d3bb3594a27f21e4da6eb010706cc85822605c204414acde39ca9085b3112a5a2566a4aa1326493fa39cce3ebf
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- relishable (0.39)
4
+ relishable (0.40)
5
5
  fog-aws (~> 0.8.0)
6
6
  legacy-fernet (~> 1.6.3)
7
7
  net-ssh (~> 3.0.2)
@@ -10,37 +10,35 @@ GEM
10
10
  remote: http://rubygems.org/
11
11
  specs:
12
12
  addressable (2.3.8)
13
- builder (3.2.2)
13
+ builder (3.2.3)
14
14
  crack (0.4.2)
15
15
  safe_yaml (~> 1.0.0)
16
16
  diff-lcs (1.2.5)
17
- excon (0.51.0)
17
+ excon (0.62.0)
18
18
  fog-aws (0.8.1)
19
19
  fog-core (~> 1.27)
20
20
  fog-json (~> 1.0)
21
21
  fog-xml (~> 0.1)
22
22
  ipaddress (~> 0.8)
23
- fog-core (1.42.0)
23
+ fog-core (1.45.0)
24
24
  builder
25
- excon (~> 0.49)
25
+ excon (~> 0.58)
26
26
  formatador (~> 0.2)
27
- fog-json (1.0.2)
28
- fog-core (~> 1.0)
27
+ fog-json (1.2.0)
28
+ fog-core
29
29
  multi_json (~> 1.10)
30
- fog-xml (0.1.2)
30
+ fog-xml (0.1.3)
31
31
  fog-core
32
- nokogiri (~> 1.5, >= 1.5.11)
32
+ nokogiri (>= 1.5.11, < 2.0.0)
33
33
  formatador (0.2.5)
34
34
  ipaddress (0.8.3)
35
- legacy-fernet (1.6.3)
36
- multi_json
37
- mini_portile2 (2.1.0)
38
- multi_json (1.12.1)
35
+ legacy-fernet (1.6.4)
36
+ multi_json (~> 1.0)
37
+ mini_portile2 (2.3.0)
38
+ multi_json (1.13.1)
39
39
  net-ssh (3.0.2)
40
- nokogiri (1.6.8)
41
- mini_portile2 (~> 2.1.0)
42
- pkg-config (~> 1.1.7)
43
- pkg-config (1.1.7)
40
+ nokogiri (1.8.5)
41
+ mini_portile2 (~> 2.3.0)
44
42
  power_assert (0.2.2)
45
43
  rake (10.4.2)
46
44
  rspec (3.1.0)
@@ -73,4 +71,4 @@ DEPENDENCIES
73
71
  webmock (~> 1.19.0)
74
72
 
75
73
  BUNDLED WITH
76
- 1.11.2
74
+ 1.16.2
@@ -54,6 +54,10 @@ class Relish
54
54
  verifier.verify_token(token)
55
55
  end
56
56
  rescue OpenSSL::Cipher::CipherError
57
+ # Certain combinations of keys and encrypted data cause decryption with an
58
+ # incorrect key to succeed (no CipherError) but produce garbage data which
59
+ # cannot be decoded into JSON, and thus fail with a ParseError instead.
60
+ rescue MultiJson::ParseError
57
61
  end
58
62
  end
59
63
  end
@@ -1,5 +1,5 @@
1
1
  class Relish
2
- VERSION = "0.39"
2
+ VERSION = "0.40"
3
3
  end
4
4
 
5
5
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: relishable
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.39'
4
+ version: '0.40'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Fine
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2016-07-27 00:00:00.000000000 Z
14
+ date: 2018-11-09 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: fog-aws
@@ -148,7 +148,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
148
148
  version: '0'
149
149
  requirements: []
150
150
  rubyforge_project:
151
- rubygems_version: 2.5.1
151
+ rubygems_version: 2.7.7
152
152
  signing_key:
153
153
  specification_version: 4
154
154
  summary: releases