module Roda::RodaPlugins::Public::RequestMethods

def public_file_readable?(path)

Return whether the given path is a readable regular file.
def public_file_readable?(path)
  ::File.file?(path) && ::File.readable?(path)
rescue SystemCallError
  # :nocov:
  false
  # :nocov:
end