module Rails::Configuration::Deprecated

def view_path=(value)

def view_path=(value)
  ActiveSupport::Deprecation.warn "config.view_path= is deprecated, " <<
    "please do paths.app.views= instead", caller
  paths.app.views = value
end