aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/commands/routes/routes_command.rb
diff options
context:
space:
mode:
Diffstat (limited to 'railties/lib/rails/commands/routes/routes_command.rb')
-rw-r--r--railties/lib/rails/commands/routes/routes_command.rb8
1 files changed, 1 insertions, 7 deletions
diff --git a/railties/lib/rails/commands/routes/routes_command.rb b/railties/lib/rails/commands/routes/routes_command.rb
index c4f3717095..25ee65aeaa 100644
--- a/railties/lib/rails/commands/routes/routes_command.rb
+++ b/railties/lib/rails/commands/routes/routes_command.rb
@@ -36,13 +36,7 @@ module Rails
private
def routes_filter
- if options.has_key?("controller")
- { controller: options["controller"] }
- elsif options.has_key?("grep_pattern")
- options["grep_pattern"]
- else
- nil
- end
+ options.symbolize_keys.slice(:controller, :grep_pattern)
end
end
end