public
Description: The blog that's almost nothing
Homepage: http://adam.blog.heroku.com/
Clone URL: git://github.com/adamwiggins/scanty.git
scanty / config.ru
100644 12 lines (9 sloc) 0.224 kb
1
2
3
4
5
6
7
8
9
10
11
12
require 'rubygems'
require 'sinatra'
 
Sinatra::Application.default_options.merge!(
  :views => File.join(File.dirname(__FILE__), 'views'),
  :run => false,
  :env => ENV['RACK_ENV']
)
 
require 'main'
run Sinatra.application