Methods
- C
- E
- M
- N
- U
Constants
PATH_SEPS | = | Regexp.union(*[::File::SEPARATOR, ::File::ALT_SEPARATOR].compact) |
Class Public methods
new(root, cache_control)
Link
# 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)
Link
escape_glob_chars(path)
Link
ext()
Link
match?(path)
Link
# 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, clean_path_info(escape_glob_chars(path))) paths = "#{full_path}#{ext}" matches = Dir[paths] match = matches.detect { |m| File.file?(m) && File.readable?(m) } if match match.sub!(@compiled_root, '') ::Rack::Utils.escape(match) end end