module Rails::Configuration::Deprecated

def view_path

def view_path
  ActiveSupport::Deprecation.warn "config.view_path is deprecated, " <<
    "please do paths.app.views instead", caller
  paths.app.views.to_a.first
end