aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/fixtures/public/bar.html
Commit message (Collapse)AuthorAgeFilesLines
* Refactor out Dir.glob from ActionDispatch::Staticschneems2014-08-271-0/+1
Dir.glob can be a security concern. The original use was to provide logic of fallback files. Example a request to `/` should render the file from `/public/index.html`. We can replace the dir glob with the specific logic it represents. The glob {,index,index.html} will look for the current path, then in the directory of the path with index file and then in the directory of the path with index.html. This PR replaces the glob logic by manually checking each potential match. Best case scenario this results in one less file API request, worst case, this has one more file API request. Related to #16464 Update: added a test for when a file of a given name (`public/bar.html` and a directory `public/bar` both exist in the same root directory. Changed logic to accommodate this scenario.