method
match?
v3.1.0 -
Show latest stable
- Class:
ActionDispatch::FileHandler
match?(path)public
No documentation available.
# File actionpack/lib/action_dispatch/middleware/static.rb, line 11
def match?(path)
path = path.dup
full_path = path.empty? ? @root : File.join(@root, ::Rack::Utils.unescape(path))
paths = "#{full_path}#{ext}"
matches = Dir[paths]
match = matches.detect { |m| File.file?(m) }
if match
match.sub!(@compiled_root, '')
match
end
end