Sha256: e70ba0478e1f8162fb93b5b15b602bc9a55b3824d511dc2b6e7452ea806470d8
Contents?: true
Size: 632 Bytes
Versions: 14
Compression:
Stored size: 632 Bytes
Contents
require 'bundler/setup' require 'sinatra/base' # The project root directory $root = ::File.dirname(__FILE__) class SinatraStaticServer < Sinatra::Base get(/.+/) do send_sinatra_file(request.path) {404} end not_found do send_sinatra_file('404.html') {"Sorry, I cannot find #{request.path}"} end def send_sinatra_file(path, &missing_file_block) file_path = File.join(File.dirname(__FILE__), 'public', path) file_path = File.join(file_path, 'index.html') unless file_path =~ /\.[a-z]+$/i File.exist?(file_path) ? send_file(file_path) : missing_file_block.call end end run SinatraStaticServer
Version data entries
14 entries across 14 versions & 1 rubygems