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

def controller_paths=(value)

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

def cookie_secret

def cookie_secret
  ActiveSupport::Deprecation.warn "config.cookie_secret is deprecated, " <<
    "please use config.secret_token instead", caller
  self.secret_token
end

def cookie_secret=(value)

def cookie_secret=(value)
  ActiveSupport::Deprecation.warn "config.cookie_secret= is deprecated, " <<
    "please use config.secret_token= instead", caller
  self.secret_token = value
end

def database_configuration_file

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

def database_configuration_file=(value)

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

def frameworks(*args)

def frameworks(*args)
  raise "config.frameworks in no longer supported. See the generated " \
        "config/boot.rb for steps on how to limit the frameworks that " \
        "will be loaded"
end

def log_path

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

def log_path=(value)

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

def routes_configuration_file

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

def routes_configuration_file=(value)

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

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

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