hellowarld/config.ru

12 lines
255 B
Ruby

#\ -s webrick
$LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__)))
$LOAD_PATH.unshift($servlet_context.getRealPath("/WEB-INF")) if defined?($servlet_context)
require 'rubygems'
require 'app/hellowarld'
map '/' do
run Sinatra::Application
end