instance method
serve_static_files=
Ruby on Rails 5.0.7.2
Since v5.0.7.2 Last seen in v5.0.7.2Signature
serve_static_files=(value)
No documentation comment.
Parameters
-
valuereq
Source
# File railties/lib/rails/application/configuration.rb, line 80
def serve_static_files=(value)
ActiveSupport::Deprecation.warn <<-eow.strip_heredoc
`config.serve_static_files` is deprecated and will be removed in Rails 5.1.
Please use `config.public_file_server.enabled = #{value}` instead.
eow
@public_file_server.enabled = value
end
Defined in railties/lib/rails/application/configuration.rb line 80
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Rails::Application::Configuration