instance method
paths
Ruby on Rails 7.0.10
Since v3.0.20Signature
paths()
No documentation comment.
Source
# File railties/lib/rails/application/configuration.rb, line 288
def paths
@paths ||= begin
paths = super
paths.add "config/database", with: "config/database.yml"
paths.add "config/secrets", with: "config", glob: "secrets.yml{,.enc}"
paths.add "config/environment", with: "config/environment.rb"
paths.add "lib/templates"
paths.add "log", with: "log/#{Rails.env}.log"
paths.add "public"
paths.add "public/javascripts"
paths.add "public/stylesheets"
paths.add "tmp"
paths
end
end
Defined in railties/lib/rails/application/configuration.rb line 288
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Rails::Application::Configuration