aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2018-03-30 19:18:15 +0900
committerGitHub <noreply@github.com>2018-03-30 19:18:15 +0900
commitbbd4aad25b38683900a92dd159ecf600509f21ae (patch)
tree231257e9327825858811dad8f3360593d2c076a5
parent90ebf3f90748fa77d7de4d9c358ba4eb57b91b6d (diff)
parentc7d886969085ffb14669658a694dd698f593a1b1 (diff)
downloadrails-bbd4aad25b38683900a92dd159ecf600509f21ae.tar.gz
rails-bbd4aad25b38683900a92dd159ecf600509f21ae.tar.bz2
rails-bbd4aad25b38683900a92dd159ecf600509f21ae.zip
Merge pull request #32383 from freeletics/add-missing-require
Adding missing extension for `cattr_accessor` method
-rw-r--r--activesupport/lib/active_support/message_encryptor.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/message_encryptor.rb b/activesupport/lib/active_support/message_encryptor.rb
index 5236c776dd..8b73270894 100644
--- a/activesupport/lib/active_support/message_encryptor.rb
+++ b/activesupport/lib/active_support/message_encryptor.rb
@@ -3,6 +3,7 @@
require "openssl"
require "base64"
require "active_support/core_ext/array/extract_options"
+require "active_support/core_ext/module/attribute_accessors"
require "active_support/message_verifier"
require "active_support/messages/metadata"