Flowdock
method

file_exist?

Importance_0
v2.2.1 - Show latest stable - 0 notes - Class: Rails::Rack::Static
file_exist?(path) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File railties/lib/rails/rack/static.rb, line 29
        def file_exist?(path)
          full_path = File.join(@file_server.root, ::Rack::Utils.unescape(path))
          File.file?(full_path) && File.readable?(full_path)
        end
Register or log in to add new notes.