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 +5 -5
- data/Gemfile.lock +16 -18
- data/lib/relish/encryption_helper.rb +4 -0
- data/lib/relish/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 34890ad56a53f91fbbfd6891d570c8e648ec07d95b1ce274f7e685a4b5386821
|
|
4
|
+
data.tar.gz: 2dd26c1a00f69b44e9774f60279f3bca37316d3b23d71e90da8aa66a976b7f22
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d8efa76f83543601f038374960ed849884286b5288bf84837c8bed2b77230f7a948b22fb623520af6c5425aa61dd07ae1622b73eecaad917eb8f77cd12a612e7
|
|
7
|
+
data.tar.gz: 035c3615cde90904ebe3e6572bd5f290b4aa99d3bb3594a27f21e4da6eb010706cc85822605c204414acde39ca9085b3112a5a2566a4aa1326493fa39cce3ebf
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
relishable (0.
|
|
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.
|
|
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.
|
|
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.
|
|
23
|
+
fog-core (1.45.0)
|
|
24
24
|
builder
|
|
25
|
-
excon (~> 0.
|
|
25
|
+
excon (~> 0.58)
|
|
26
26
|
formatador (~> 0.2)
|
|
27
|
-
fog-json (1.0
|
|
28
|
-
fog-core
|
|
27
|
+
fog-json (1.2.0)
|
|
28
|
+
fog-core
|
|
29
29
|
multi_json (~> 1.10)
|
|
30
|
-
fog-xml (0.1.
|
|
30
|
+
fog-xml (0.1.3)
|
|
31
31
|
fog-core
|
|
32
|
-
nokogiri (
|
|
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.
|
|
36
|
-
multi_json
|
|
37
|
-
mini_portile2 (2.
|
|
38
|
-
multi_json (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.
|
|
41
|
-
mini_portile2 (~> 2.
|
|
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.
|
|
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
|
data/lib/relish/version.rb
CHANGED
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.
|
|
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:
|
|
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.
|
|
151
|
+
rubygems_version: 2.7.7
|
|
152
152
|
signing_key:
|
|
153
153
|
specification_version: 4
|
|
154
154
|
summary: releases
|