diff options
author | George Claghorn <george.claghorn@gmail.com> | 2018-01-04 19:54:13 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-04 19:54:13 -0500 |
commit | e243866d9b1725e272550e8ae6d5c0594f37f6a1 (patch) | |
tree | 94955eca5cc937c535aa3687e825aaf228e19845 /actionpack/lib | |
parent | 39f6c6c641f0c92c532e0c3747d1536af657920f (diff) | |
parent | 6fe9cc80fccaa553e1bd611a7247ba1320895071 (diff) | |
download | rails-e243866d9b1725e272550e8ae6d5c0594f37f6a1.tar.gz rails-e243866d9b1725e272550e8ae6d5c0594f37f6a1.tar.bz2 rails-e243866d9b1725e272550e8ae6d5c0594f37f6a1.zip |
Merge pull request #31637 from wagenet/patch-1
Add missing require for `strip_heredoc`
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_controller/metal/request_forgery_protection.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/action_controller/metal/request_forgery_protection.rb b/actionpack/lib/action_controller/metal/request_forgery_protection.rb index 767eddb361..0ab313e398 100644 --- a/actionpack/lib/action_controller/metal/request_forgery_protection.rb +++ b/actionpack/lib/action_controller/metal/request_forgery_protection.rb @@ -3,6 +3,7 @@ require "rack/session/abstract/id" require "action_controller/metal/exceptions" require "active_support/security_utils" +require "active_support/core_ext/string/strip" module ActionController #:nodoc: class InvalidAuthenticityToken < ActionControllerError #:nodoc: |