aboutsummaryrefslogtreecommitdiff
path: root/config.ru
diff options
context:
space:
mode:
authorParker Moore <parkrmoore@gmail.com>2013-01-11 16:07:26 -0800
committerParker Moore <parkrmoore@gmail.com>2013-01-11 16:07:26 -0800
commit745e8f77bb3104fca1ae4510f019923228e54e05 (patch)
tree4b8f5305e7b795bb923821b8b95a31b6eca0cd42 /config.ru
parent9decd23b5a7a2f26590a4995cafcba010695717d (diff)
parent5b332f5c95f825221e2447ca4909136a162dbaae (diff)
downloadmy_new_personal_website-745e8f77bb3104fca1ae4510f019923228e54e05.tar.xz
my_new_personal_website-745e8f77bb3104fca1ae4510f019923228e54e05.zip
Merge pull request #936 from richo/cleanup/whitespace
Whitespace
Diffstat (limited to '')
-rw-r--r--config.ru6
1 files changed, 3 insertions, 3 deletions
diff --git a/config.ru b/config.ru
index b1b746b1..fddabac2 100644
--- a/config.ru
+++ b/config.ru
@@ -4,7 +4,7 @@ require 'sinatra/base'
# The project root directory
$root = ::File.dirname(__FILE__)
-class SinatraStaticServer < Sinatra::Base
+class SinatraStaticServer < Sinatra::Base
get(/.+/) do
send_sinatra_file(request.path) {404}
@@ -16,10 +16,10 @@ class SinatraStaticServer < Sinatra::Base
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_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 \ No newline at end of file
+run SinatraStaticServer