instance method
paths
Ruby on Rails 3.1.12
Since v3.0.20Signature
paths()
No documentation comment.
Source
# File railties/lib/rails/application/configuration.rb, line 76
def paths
@paths ||= begin
paths = super
paths.add "config/database", :with => "config/database.yml"
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 76
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Rails::Application::Configuration