Skip to content

Commit eb5c96f

Browse files
Support Rails 7.1 (#138)
Co-authored-by: Marc Qualie <[email protected]>
1 parent 09f2b26 commit eb5c96f

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

diffcrypt.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
2929
spec.executables = %w[diffcrypt]
3030
spec.require_paths = ['lib']
3131

32-
spec.add_runtime_dependency 'activesupport', '>= 6.0', '< 7.1'
32+
spec.add_runtime_dependency 'activesupport', '>= 6.0', '< 7.2'
3333
spec.add_runtime_dependency 'thor', '>= 0.20', '< 2'
3434
spec.metadata['rubygems_mfa_required'] = 'true'
3535
end

lib/diffcrypt/encryptor.rb

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
require 'securerandom'
77
require 'yaml'
88

9+
require 'active_support' # NOTE: This is required because of a bug in 7.1 which needs deprecation libs
910
require 'active_support/message_encryptor'
1011

1112
require_relative './version'

lib/diffcrypt/rails/encrypted_configuration.rb

+8
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,14 @@ def key
6868
read_env_key || read_key_file || handle_missing_key
6969
end
7070

71+
# It's required since the commit https://github.com/rails/rails/commit/1740b1f2cb8104435b6041ec6bfaabe58a6d74e6
72+
# Returns truthy if #key is truthy. Returns falsy otherwise. Unlike #key,
73+
# does not raise MissingKeyError when +raise_if_missing_key+ is true.
74+
# @return [Boolean]
75+
def key?
76+
!!(read_env_key || read_key_file)
77+
end
78+
7179
def change(&block)
7280
writing read, &block
7381
end

test/rails_test.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77

88
RAILS_VERSIONS = %w[
99
6.1.7.7
10-
7.0.8.1
10+
7.0.8.3
11+
7.1.3.3
1112
].freeze
1213

1314
RAILS_FLAGS = %w[

0 commit comments

Comments
 (0)