From 65276135d1ff3b5a24cd4e6b2e8a07041a93b4ab Mon Sep 17 00:00:00 2001 From: Dann Luciano Date: Sat, 11 Feb 2012 20:28:37 -0200 Subject: [PATCH] Added the current folder to the ruby path. In my enviroment the config.ru can not load the app.rb file --- config.ru | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config.ru b/config.ru index bb0b415..fd4bf29 100644 --- a/config.ru +++ b/config.ru @@ -1,3 +1,5 @@ +$:.unshift(__FILE__, ".") + require 'app' use Rack::ShowExceptions