aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/routing
diff options
context:
space:
mode:
authorMarcin Olichwirowicz <olichwirowicz@gmail.com>2015-09-01 20:30:37 +0200
committerMarcin Olichwirowicz <olichwirowicz@gmail.com>2015-09-01 20:36:47 +0200
commitb69699afda2069363a1e09e0868220629779475d (patch)
treeb98038d74a452a4e8478a6ef358975d7715daf90 /actionpack/lib/action_dispatch/routing
parentf1a3d4876f625f342a84b5dd43f55274704c30f9 (diff)
downloadrails-b69699afda2069363a1e09e0868220629779475d.tar.gz
rails-b69699afda2069363a1e09e0868220629779475d.tar.bz2
rails-b69699afda2069363a1e09e0868220629779475d.zip
Remove not used requires
Diffstat (limited to 'actionpack/lib/action_dispatch/routing')
-rw-r--r--actionpack/lib/action_dispatch/routing/mapper.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/actionpack/lib/action_dispatch/routing/mapper.rb b/actionpack/lib/action_dispatch/routing/mapper.rb
index 1acfb2bfe8..87b826f7d0 100644
--- a/actionpack/lib/action_dispatch/routing/mapper.rb
+++ b/actionpack/lib/action_dispatch/routing/mapper.rb
@@ -1,10 +1,8 @@
-require 'active_support/core_ext/hash/except'
require 'active_support/core_ext/hash/reverse_merge'
require 'active_support/core_ext/hash/slice'
require 'active_support/core_ext/enumerable'
require 'active_support/core_ext/array/extract_options'
-require 'active_support/core_ext/module/remove_method'
-require 'active_support/inflector'
+require 'active_support/core_ext/regexp'
require 'active_support/deprecation'
require 'action_dispatch/routing/redirection'
require 'action_dispatch/routing/endpoint'