aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-06-17 22:48:28 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-06-17 22:48:28 -0300
commit84a13e019e93efaa8994b3f8303d635a7702dbce (patch)
tree4f931add3367b53e495b105acaa92736aa6fb740 /railties
parent3999f9cf0f16585ecd0e8bcd3bc482b46779e8cb (diff)
downloadrails-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.md4
-rw-r--r--railties/lib/rails/rack/log_tailer.rb4
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