diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2018-03-02 04:04:49 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2018-03-02 04:04:49 +0900 |
commit | d4f7ea2db6b9f02e7a2edae9489f06cb80fd2b5c (patch) | |
tree | 7a306e3129e24b21824b54e4ad97c1f525e62fea /actionpack | |
parent | 90de2dc6f200d7237f5f259ddb05ab82d5f88891 (diff) | |
download | rails-d4f7ea2db6b9f02e7a2edae9489f06cb80fd2b5c.tar.gz rails-d4f7ea2db6b9f02e7a2edae9489f06cb80fd2b5c.tar.bz2 rails-d4f7ea2db6b9f02e7a2edae9489f06cb80fd2b5c.zip |
`ConsoleFormatter` is no longer used as a class
It is used as a namespace for `Sheet` and `Expanded`.
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_dispatch/routing/inspector.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_dispatch/routing/inspector.rb b/actionpack/lib/action_dispatch/routing/inspector.rb index 8c0cf74667..de200fada0 100644 --- a/actionpack/lib/action_dispatch/routing/inspector.rb +++ b/actionpack/lib/action_dispatch/routing/inspector.rb @@ -125,7 +125,7 @@ module ActionDispatch end end - class ConsoleFormatter + module ConsoleFormatter class Sheet def initialize @buffer = [] @@ -185,7 +185,7 @@ module ActionDispatch end end - class Expanded < ConsoleFormatter + class Expanded def initialize @buffer = [] end |