diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-01-06 11:19:24 -0200 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-01-06 11:19:30 -0200 |
commit | 3abb76824b87ad7142e43d764ef09bac73c2066d (patch) | |
tree | 8f93e58d4a39ed6c941a5a63daf20c978b32989e /railties/lib/rails | |
parent | f18078475efce9eeef27d64044058539517b0260 (diff) | |
download | rails-3abb76824b87ad7142e43d764ef09bac73c2066d.tar.gz rails-3abb76824b87ad7142e43d764ef09bac73c2066d.tar.bz2 rails-3abb76824b87ad7142e43d764ef09bac73c2066d.zip |
Move table routes formatter class to the inspector and rename it
It feels more consistent to have this class called "HtmlTableFormatter",
and to have it here with the routes inspector and console formatter,
since it's used for both routing error exceptions and the rails info
page.
Diffstat (limited to 'railties/lib/rails')
-rw-r--r-- | railties/lib/rails/templates/rails/info/routes.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/templates/rails/info/routes.html.erb b/railties/lib/rails/templates/rails/info/routes.html.erb index 30ea086ebb..2d8a190986 100644 --- a/railties/lib/rails/templates/rails/info/routes.html.erb +++ b/railties/lib/rails/templates/rails/info/routes.html.erb @@ -6,4 +6,4 @@ Routes match in priority from top to bottom </p> -<%= @routes_inspector.format(ActionDispatch::DebugExceptions::TableRoutesFormatter.new(self)) %> +<%= @routes_inspector.format(ActionDispatch::Routing::HtmlTableFormatter.new(self)) %> |