diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-06-17 22:48:28 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-06-17 22:48:28 -0300 |
commit | 84a13e019e93efaa8994b3f8303d635a7702dbce (patch) | |
tree | 4f931add3367b53e495b105acaa92736aa6fb740 /railties | |
parent | 3999f9cf0f16585ecd0e8bcd3bc482b46779e8cb (diff) | |
download | rails-84a13e019e93efaa8994b3f8303d635a7702dbce.tar.gz rails-84a13e019e93efaa8994b3f8303d635a7702dbce.tar.bz2 rails-84a13e019e93efaa8994b3f8303d635a7702dbce.zip |
Deprecate Rails::Rack::LogTailer
It was being used by Rails for show the development logs but since Rails
4 it is not being used anymore on the framework.
This class seems to be private but it were part of the public API we are
deprecating before removing.
Diffstat (limited to 'railties')
-rw-r--r-- | railties/CHANGELOG.md | 4 | ||||
-rw-r--r-- | railties/lib/rails/rack/log_tailer.rb | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md index 98316d1eca..c33a4ed192 100644 --- a/railties/CHANGELOG.md +++ b/railties/CHANGELOG.md @@ -1,3 +1,7 @@ +* Deprecate `Rails::Rack::LogTailer` with not replacement. + + *Rafael Mendonça França* + * Add a generic --skip-gems options to generator This option is useful if users want to remove some gems like jbuilder, diff --git a/railties/lib/rails/rack/log_tailer.rb b/railties/lib/rails/rack/log_tailer.rb index 50d0eb96fc..bc26421a9e 100644 --- a/railties/lib/rails/rack/log_tailer.rb +++ b/railties/lib/rails/rack/log_tailer.rb @@ -1,7 +1,11 @@ +require 'active_support/deprecation' + module Rails module Rack class LogTailer def initialize(app, log = nil) + ActiveSupport::Deprecation.warn "LogTailer is deprecated and will be removed on Rails 5" + @app = app path = Pathname.new(log || "#{::File.expand_path(Rails.root)}/log/#{Rails.env}.log").cleanpath |