diff options
author | Koichi ITO <koic.ito@gmail.com> | 2017-07-10 22:47:31 +0900 |
---|---|---|
committer | Koichi ITO <koic.ito@gmail.com> | 2017-07-11 13:12:32 +0900 |
commit | d2901bd517ec3e9efa6ac727bbe4984376e726ba (patch) | |
tree | 0d0f4c0977f8373abbd221712c3a3a9af8c921a3 /actionpack/lib/action_dispatch/http | |
parent | aa28c5ca65e230e0946261db0aa58a067e7032df (diff) | |
download | rails-d2901bd517ec3e9efa6ac727bbe4984376e726ba.tar.gz rails-d2901bd517ec3e9efa6ac727bbe4984376e726ba.tar.bz2 rails-d2901bd517ec3e9efa6ac727bbe4984376e726ba.zip |
[Action Pack] `rubocop -a --only Layout/EmptyLineAfterMagicComment`
Diffstat (limited to 'actionpack/lib/action_dispatch/http')
-rw-r--r-- | actionpack/lib/action_dispatch/http/request.rb | 1 | ||||
-rw-r--r-- | actionpack/lib/action_dispatch/http/url.rb | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/lib/action_dispatch/http/request.rb b/actionpack/lib/action_dispatch/http/request.rb index 914163f219..fd986d88e7 100644 --- a/actionpack/lib/action_dispatch/http/request.rb +++ b/actionpack/lib/action_dispatch/http/request.rb @@ -1,4 +1,5 @@ # frozen_string_literal: true + require "stringio" require "active_support/inflector" diff --git a/actionpack/lib/action_dispatch/http/url.rb b/actionpack/lib/action_dispatch/http/url.rb index 28672e2a1a..f0344fd927 100644 --- a/actionpack/lib/action_dispatch/http/url.rb +++ b/actionpack/lib/action_dispatch/http/url.rb @@ -1,4 +1,5 @@ # frozen_string_literal: true + require "active_support/core_ext/module/attribute_accessors" module ActionDispatch |