# File lib/apipie/static_dispatcher.rb, line 24 def call(env) @file_server.call(env) end
# File lib/apipie/static_dispatcher.rb, line 28 def ext @ext ||= begin ext = ::ActionController::Base.page_cache_extension "{,#{ext},/index#{ext}}" end end
# File lib/apipie/static_dispatcher.rb, line 10 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
# File lib/apipie/static_dispatcher.rb, line 4 def initialize(root) @root = root.chomp('/') @compiled_root = %r^#{Regexp.escape(root)}/ @file_server = ::Rack::File.new(@root) end