method

new

Importance_0
new(root, index: "index", headers: {}, precompressed: %i[ br gzip ], compressible_content_types: /\A(?:text\/|application\/javascript)/) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_dispatch/middleware/static.rb, line 53 def initialize(root, index: "index", headers: {}, precompressed: %[ br gzip ], compressible_content_types: /\A(?:text\/|application\/javascript)/) @root = root.chomp("/").b @index = index @precompressed = Array(precompressed).map(&:to_s) | ] identity ] @compressible_content_types = compressible_content_types @file_server = ::Rack::Files.new(@root, headers) end
Register or log in to add new notes.