lite-encryption 1.1.0 → 1.2.0

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: cdda189309ae7d6af8fac9257314a5e57ffb942f6f9443a3d25dc13bf96d4ffe
4
- data.tar.gz: ab1701787569d474a5d9107bc13522b71ea6339cf2d8542e3089356098d0321d
3
+ metadata.gz: d5f2a37b612cb9d2f2fe5a941af941b9d0423b9ce1232887830d08a5f4fa4bc0
4
+ data.tar.gz: e69ea20e36b30f0adcc60f753a117f3f8bc6825a1e9e2109fef1528bc993c951
5
5
  SHA512:
6
- metadata.gz: 5017b7033e5d2939ce0fb02a534b7dcaf4c4cd2a069b9a6b0cca29a4838757d84d8a9f376f9ffc62d127b941c5082beb59cf5819a6a88f27ff7fef34fc3b2076
7
- data.tar.gz: 65acf87b0fe976d86e9e9399e53cef33d1fca10f799d9f41819e8d4a89ee3f20939247b003248ed020b92111ac232b22c4b6cafa0525d6bf5cb22042c7424343
6
+ metadata.gz: 4b81e82c8885e661eb17f38d584874e7a59297e6f0f55f9f32cfbf73678516d16f7aaec3fa8d0f81534da87c2b62e55a799396c402b4bea40313640b719c0374
7
+ data.tar.gz: 6d1b39740a256ae0df3446895b818f04f7d48c83981f8af1be7236911694faaf2cc618a11a88de4ba5d0f404e27f13ac1eed78518612755ee35ac341edb63709
data/.rubocop.yml CHANGED
@@ -1,8 +1,9 @@
1
1
  require:
2
2
  - rubocop-performance
3
+ - rubocop-rake
3
4
  - rubocop-rspec
4
5
  AllCops:
5
- TargetRubyVersion: 2.7
6
+ TargetRubyVersion: 3.0
6
7
  NewCops: enable
7
8
  DisplayCopNames: true
8
9
  DisplayStyleGuide: true
@@ -33,6 +34,8 @@ Metrics/ModuleLength:
33
34
  Enabled: false
34
35
  RSpec/MultipleExpectations:
35
36
  Enabled: false
37
+ Style/ArgumentsForwarding:
38
+ Enabled: false
36
39
  Style/Documentation:
37
40
  Enabled: false
38
41
  Style/ExpandPathArguments:
data/CHANGELOG.md CHANGED
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [1.2.0] - 2021-07-19
10
+ ### Added
11
+ - Added Ruby 3.0 support
12
+
9
13
  ## [1.1.0] - 2021-04-12
10
14
  ### Added
11
15
  - Added deterministic encryption
data/Gemfile.lock CHANGED
@@ -1,31 +1,31 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- lite-encryption (1.1.0)
4
+ lite-encryption (1.2.0)
5
5
  activesupport
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- actionpack (6.1.3.1)
11
- actionview (= 6.1.3.1)
12
- activesupport (= 6.1.3.1)
10
+ actionpack (6.1.4)
11
+ actionview (= 6.1.4)
12
+ activesupport (= 6.1.4)
13
13
  rack (~> 2.0, >= 2.0.9)
14
14
  rack-test (>= 0.6.3)
15
15
  rails-dom-testing (~> 2.0)
16
16
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
17
- actionview (6.1.3.1)
18
- activesupport (= 6.1.3.1)
17
+ actionview (6.1.4)
18
+ activesupport (= 6.1.4)
19
19
  builder (~> 3.1)
20
20
  erubi (~> 1.4)
21
21
  rails-dom-testing (~> 2.0)
22
22
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
23
- activemodel (6.1.3.1)
24
- activesupport (= 6.1.3.1)
25
- activerecord (6.1.3.1)
26
- activemodel (= 6.1.3.1)
27
- activesupport (= 6.1.3.1)
28
- activesupport (6.1.3.1)
23
+ activemodel (6.1.4)
24
+ activesupport (= 6.1.4)
25
+ activerecord (6.1.4)
26
+ activemodel (= 6.1.4)
27
+ activesupport (= 6.1.4)
28
+ activesupport (6.1.4)
29
29
  concurrent-ruby (~> 1.0, >= 1.0.2)
30
30
  i18n (>= 1.6, < 2)
31
31
  minitest (>= 5.1)
@@ -34,11 +34,11 @@ GEM
34
34
  ast (2.4.2)
35
35
  builder (3.2.4)
36
36
  colorize (0.8.1)
37
- concurrent-ruby (1.1.8)
37
+ concurrent-ruby (1.1.9)
38
38
  crass (1.0.6)
39
39
  database_cleaner (2.0.1)
40
40
  database_cleaner-active_record (~> 2.0.0)
41
- database_cleaner-active_record (2.0.0)
41
+ database_cleaner-active_record (2.0.1)
42
42
  activerecord (>= 5.a)
43
43
  database_cleaner-core (~> 2.0.0)
44
44
  database_cleaner-core (2.0.1)
@@ -52,17 +52,17 @@ GEM
52
52
  railties (>= 3.0.0)
53
53
  i18n (1.8.10)
54
54
  concurrent-ruby (~> 1.0)
55
- loofah (2.9.1)
55
+ loofah (2.10.0)
56
56
  crass (~> 1.0.2)
57
57
  nokogiri (>= 1.5.9)
58
58
  method_source (1.0.0)
59
- mini_portile2 (2.5.0)
59
+ mini_portile2 (2.5.3)
60
60
  minitest (5.14.4)
61
- nokogiri (1.11.3)
61
+ nokogiri (1.11.7)
62
62
  mini_portile2 (~> 2.5.0)
63
63
  racc (~> 1.4)
64
64
  parallel (1.20.1)
65
- parser (3.0.1.0)
65
+ parser (3.0.2.0)
66
66
  ast (~> 2.4.1)
67
67
  racc (1.5.2)
68
68
  rack (2.2.3)
@@ -73,14 +73,14 @@ GEM
73
73
  nokogiri (>= 1.6)
74
74
  rails-html-sanitizer (1.3.0)
75
75
  loofah (~> 2.3)
76
- railties (6.1.3.1)
77
- actionpack (= 6.1.3.1)
78
- activesupport (= 6.1.3.1)
76
+ railties (6.1.4)
77
+ actionpack (= 6.1.4)
78
+ activesupport (= 6.1.4)
79
79
  method_source
80
- rake (>= 0.8.7)
80
+ rake (>= 0.13)
81
81
  thor (~> 1.0)
82
82
  rainbow (3.0.0)
83
- rake (13.0.3)
83
+ rake (13.0.6)
84
84
  regexp_parser (2.1.1)
85
85
  rexml (3.2.5)
86
86
  rspec (3.10.0)
@@ -104,29 +104,29 @@ GEM
104
104
  rspec-mocks (~> 3.10)
105
105
  rspec-support (~> 3.10)
106
106
  rspec-support (3.10.2)
107
- rubocop (1.12.1)
107
+ rubocop (1.18.3)
108
108
  parallel (~> 1.10)
109
109
  parser (>= 3.0.0.0)
110
110
  rainbow (>= 2.2.2, < 4.0)
111
111
  regexp_parser (>= 1.8, < 3.0)
112
112
  rexml
113
- rubocop-ast (>= 1.2.0, < 2.0)
113
+ rubocop-ast (>= 1.7.0, < 2.0)
114
114
  ruby-progressbar (~> 1.7)
115
115
  unicode-display_width (>= 1.4.0, < 3.0)
116
- rubocop-ast (1.4.1)
117
- parser (>= 2.7.1.5)
118
- rubocop-performance (1.10.2)
119
- rubocop (>= 0.90.0, < 2.0)
116
+ rubocop-ast (1.8.0)
117
+ parser (>= 3.0.1.1)
118
+ rubocop-performance (1.11.4)
119
+ rubocop (>= 1.7.0, < 2.0)
120
120
  rubocop-ast (>= 0.4.0)
121
- rubocop-rake (0.5.1)
122
- rubocop
123
- rubocop-rspec (2.2.0)
121
+ rubocop-rake (0.6.0)
122
+ rubocop (~> 1.0)
123
+ rubocop-rspec (2.4.0)
124
124
  rubocop (~> 1.0)
125
125
  rubocop-ast (>= 1.1.0)
126
126
  ruby-progressbar (1.11.0)
127
- ruby_parser (3.15.1)
128
- sexp_processor (~> 4.9)
129
- sexp_processor (4.15.2)
127
+ ruby_parser (3.16.0)
128
+ sexp_processor (~> 4.15, >= 4.15.1)
129
+ sexp_processor (4.15.3)
130
130
  sqlite3 (1.4.2)
131
131
  thor (1.1.0)
132
132
  tzinfo (2.0.4)
@@ -154,4 +154,4 @@ DEPENDENCIES
154
154
  sqlite3
155
155
 
156
156
  BUNDLED WITH
157
- 2.2.16
157
+ 2.2.24
@@ -3,7 +3,7 @@
3
3
  module Lite
4
4
  module Encryption
5
5
 
6
- VERSION = '1.1.0'
6
+ VERSION = '1.2.0'
7
7
 
8
8
  end
9
9
  end
@@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
27
27
  )
28
28
  else
29
29
  raise 'RubyGems 2.0 or newer is required to protect against ' \
30
- 'public gem pushes.'
30
+ 'public gem pushes.'
31
31
  end
32
32
 
33
33
  # Specify which files should be added to the gem when it is released.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lite-encryption
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Gomez
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-04-12 00:00:00.000000000 Z
11
+ date: 2021-07-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -259,7 +259,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
259
259
  - !ruby/object:Gem::Version
260
260
  version: '0'
261
261
  requirements: []
262
- rubygems_version: 3.2.16
262
+ rubygems_version: 3.2.24
263
263
  signing_key:
264
264
  specification_version: 4
265
265
  summary: ActiveSupport::MessageEncryptor encryption wrapper for PORO objects and ActiveModel