active_record_encrypted_string 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: aac35fe9e40902529d160d7e50a308cf7f3b7a2d6f65c17d71922dfce991d24b
4
- data.tar.gz: d45b843f667ec7f0394518f44ce558dcce78b9f66c0a3d96c6e6d4c03d569aa5
3
+ metadata.gz: c64142974eed5666b4e2a4b506e797aad718dccd122ccf9cdbc8dbaaf8f7c487
4
+ data.tar.gz: dd959067159893ad818213fe303616b08dea13b7c7b7a892994aeb288e434508
5
5
  SHA512:
6
- metadata.gz: '007869d2a53cf2ccb75ea1471abad30648e05982f96c25a996344f0ece7937f4e0a770a52937323785d031d481d54e1a0fa61a588f7ede6f696467fc8c6f0dca'
7
- data.tar.gz: 0503cd1f5cbff6eef26756bdfdc9b37f967c5c02204a650f21b63e2a024efeec9a77fe1a62ac1b2c6b6597e73dacbc2c98c6d81c1d51d6bbc7b65cbed9204d99
6
+ metadata.gz: 900d8b6c13baa3165b15900440a8e52fa79bbac354c254cec913ecb2c4e2d34c4f36aba371f0349362368d518967cc1c526a14a42599d3f88e6aca8ea6a034a3
7
+ data.tar.gz: 72c93715e0cc390d8e5bd478cd3ca335af3eda9794bfee0b78baa8b9ede44b90e41c89a5c7a7c9dd950ec49f0d4b3dc2f3b553ce6bea34fb9e551acc8aff1cf4
@@ -34,7 +34,6 @@ common: &common
34
34
  name: Run tests
35
35
  command: bundle exec appraisal ${RAILS_VERSION} rspec
36
36
 
37
-
38
37
  version: 2.1
39
38
  jobs:
40
39
  build_and_test_rails_5_0:
@@ -57,6 +56,10 @@ jobs:
57
56
  environment:
58
57
  RAILS_VERSION: 6_0_stable
59
58
 
59
+ build_and_test_rails_6_1:
60
+ <<: *common
61
+ environment:
62
+ RAILS_VERSION: 6_1_stable
60
63
 
61
64
  workflows:
62
65
  version: 2
@@ -66,3 +69,4 @@ workflows:
66
69
  - build_and_test_rails_5_1
67
70
  - build_and_test_rails_5_2
68
71
  - build_and_test_rails_6_0
72
+ - build_and_test_rails_6_1
data/Appraisals CHANGED
@@ -1,18 +1,22 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  appraise '5_0_stable' do
4
- gem 'activerecord', '~> 5.0.0'
4
+ gem 'activerecord', '~> 5-0-stable'
5
5
  gem 'sqlite3', '~> 1.3.6'
6
6
  end
7
7
 
8
8
  appraise '5_1_stable' do
9
- gem 'activerecord', '~> 5.1.0'
9
+ gem 'activerecord', '~> 5-1-stable'
10
10
  end
11
11
 
12
12
  appraise '5_2_stable' do
13
- gem 'activerecord', '~> 5.2.0'
13
+ gem 'activerecord', '~> 5-2-stable'
14
14
  end
15
15
 
16
16
  appraise '6_0_stable' do
17
- gem 'activerecord', '~> 6.0.0'
17
+ gem 'activerecord', '~> 6-0-stable'
18
+ end
19
+
20
+ appraise '6_1_stable' do
21
+ gem 'activerecord', '~> 6-1-stable'
18
22
  end
@@ -1,3 +1,11 @@
1
+ ## Unreleased
2
+
3
+ - [#x](https://github.com/kamillle/active_record_encrypted_string/pull/x) Please describe
4
+
5
+ ## 1.2.0
6
+
7
+ - [#7](https://github.com/kamillle/active_record_encrypted_string/pull/7) Support Rails v6.1.0rc1
8
+
1
9
  ## 1.1.0
2
10
 
3
11
  - Support encrypt with other salts
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- active_record_encrypted_string (1.1.0)
4
+ active_record_encrypted_string (1.2.0)
5
5
  activerecord (>= 5.0, < 7)
6
6
  activesupport (< 7)
7
7
 
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file was generated by Appraisal
4
+
5
+ source 'https://rubygems.org'
6
+
7
+ gem 'activerecord', '~> 6.1.0rc1'
8
+
9
+ gemspec path: '../'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActiveRecordEncryptedString
4
- VERSION = '1.1.0'
4
+ VERSION = '1.2.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_record_encrypted_string
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
  - kamillle
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-06-28 00:00:00.000000000 Z
11
+ date: 2020-11-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -169,6 +169,7 @@ files:
169
169
  - gemfiles/5_1_stable.gemfile
170
170
  - gemfiles/5_2_stable.gemfile
171
171
  - gemfiles/6_0_stable.gemfile
172
+ - gemfiles/6_1_stable.gemfile
172
173
  - lib/active_record_encrypted_string.rb
173
174
  - lib/active_record_encrypted_string/configuration.rb
174
175
  - lib/active_record_encrypted_string/type.rb