module Rails::Configuration::Deprecated

def controller_paths

def controller_paths
  ActiveSupport::Deprecation.warn "config.controller_paths is deprecated, " <<
    "please do paths.app.controllers instead", caller
  paths.app.controllers.to_a.uniq
end