aboutsummaryrefslogblamecommitdiffstats
path: root/railties/lib/rails/deprecation.rb
blob: 42bba151d6325c93db4661757ea94e7bfd6711ec (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                                        
require "active_support/string_inquirer"
require "active_support/deprecation"

RAILS_ROOT = (Class.new(ActiveSupport::Deprecation::DeprecationProxy) do
  def target
    Rails.root
  end

  def replace(val)
    puts OMG
  end

  def warn(callstack, called, args)
    msg = "RAILS_ROOT is deprecated! Use Rails.root instead."
    ActiveSupport::Deprecation.warn(msg, callstack)
  end
end).new