Methods
C
E
M
N
U
Class Public methods
new(root, cache_control)
# File actionpack/lib/action_dispatch/middleware/static.rb, line 6
def initialize(root, cache_control)
  @root          = root.chomp('/')
  @compiled_root = /^#{Regexp.escape(root)}/
  headers = cache_control && { 'Cache-Control' => cache_control }
  @file_server   = ::Rack::File.new(@root, headers)
end
Instance Public methods
call(env)
# File actionpack/lib/action_dispatch/middleware/static.rb, line 28
def call(env)
  @file_server.call(env)
end
escape_glob_chars(path)
# File actionpack/lib/action_dispatch/middleware/static.rb, line 43
def escape_glob_chars(path)
  path.gsub(/[*?{}\[\]]/, "\\\\\\&")
end
ext()
# File actionpack/lib/action_dispatch/middleware/static.rb, line 32
def ext
  @ext ||= begin
    ext = ::ActionController::Base.default_static_extension
    "{,#{ext},/index#{ext}}"
  end
end
match?(path)
# File actionpack/lib/action_dispatch/middleware/static.rb, line 13
def match?(path)
  path = unescape_path(path)
  return false unless path.valid_encoding?

  full_path = path.empty? ? @root : File.join(@root, escape_glob_chars(path))
  paths = "#{full_path}#{ext}"

  matches = Dir[paths]
  match = matches.detect { |m| File.file?(m) }
  if match
    match.sub!(@compiled_root, '')
    ::Rack::Utils.escape(match)
  end
end
unescape_path(path)
# File actionpack/lib/action_dispatch/middleware/static.rb, line 39
def unescape_path(path)
  URI.parser.unescape(path)
end