|
|
@ -4,7 +4,7 @@ require 'sinatra/base'
|
|
|
|
# The project root directory
|
|
|
|
# The project root directory
|
|
|
|
$root = ::File.dirname(__FILE__)
|
|
|
|
$root = ::File.dirname(__FILE__)
|
|
|
|
|
|
|
|
|
|
|
|
class SinatraStaticServer < Sinatra::Base
|
|
|
|
class SinatraStaticServer < Sinatra::Base
|
|
|
|
|
|
|
|
|
|
|
|
get(/.+/) do
|
|
|
|
get(/.+/) do
|
|
|
|
send_sinatra_file(request.path) {404}
|
|
|
|
send_sinatra_file(request.path) {404}
|
|
|
@ -16,10 +16,10 @@ class SinatraStaticServer < Sinatra::Base
|
|
|
|
|
|
|
|
|
|
|
|
def send_sinatra_file(path, &missing_file_block)
|
|
|
|
def send_sinatra_file(path, &missing_file_block)
|
|
|
|
file_path = File.join(File.dirname(__FILE__), 'public', path)
|
|
|
|
file_path = File.join(File.dirname(__FILE__), 'public', path)
|
|
|
|
file_path = File.join(file_path, 'index.html') unless file_path =~ /\.[a-z]+$/i
|
|
|
|
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
|
|
|
|
File.exist?(file_path) ? send_file(file_path) : missing_file_block.call
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
run SinatraStaticServer
|
|
|
|
run SinatraStaticServer
|
|
|
|