mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-10-31 23:35:00 -04:00
ef3ff431e5
2. Added Rack support 3. Disqus support 4. Improved Readme 5. Improved Syntax flexibility and styling 6. Improved blockquote styling
36 lines
806 B
Ruby
36 lines
806 B
Ruby
require 'rubygems'
|
|
require 'bundler/setup'
|
|
require 'rack'
|
|
|
|
# The project root directory
|
|
$root = ::File.dirname(__FILE__)
|
|
|
|
# Common Rack Middleware
|
|
use Rack::ShowStatus # Nice looking 404s and other messages
|
|
use Rack::ShowExceptions # Nice looking errors
|
|
|
|
#
|
|
# From Rack::DirectoryIndex:
|
|
# https://github.com/craigmarksmith/rack-directory-index/
|
|
#
|
|
module Rack
|
|
class DirectoryIndex
|
|
def initialize(app)
|
|
@app = app
|
|
end
|
|
def call(env)
|
|
index_path = ::File.join($root, 'public', Rack::Request.new(env).path.split('/'), 'index.html')
|
|
if ::File.exists?(index_path)
|
|
return [200, {"Content-Type" => "text/html"}, [::File.read(index_path)]]
|
|
else
|
|
@app.call(env)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
use Rack::DirectoryIndex
|
|
|
|
run Rack::Directory.new($root + '/public')
|
|
|