summaryrefslogtreecommitdiff
path: root/config.ru
diff options
context:
space:
mode:
authortbuehlmann <tobias.buehlmann@gmx.de>2013-02-03 09:30:16 +0100
committertbuehlmann <tobias.buehlmann@gmx.de>2013-02-03 09:30:16 +0100
commit98bfd0502409f5b41975aae224d05296c0ea173b (patch)
tree1856d0948df659875a6d07626ea074065df74bfe /config.ru
parent03c619322017a60c27b516a925a75c2c5dc8c2dd (diff)
Several things.
- Using Slim instead of Haml. - Having a before filter for having flash functionality. - Using Bundler.
Diffstat (limited to 'config.ru')
-rw-r--r--config.ru6
1 files changed, 3 insertions, 3 deletions
diff --git a/config.ru b/config.ru
index ba412c2..7e916a6 100644
--- a/config.ru
+++ b/config.ru
@@ -1,5 +1,5 @@
-$LOAD_PATH.unshift(File.dirname(__FILE__))
-require 'file_upload'
+# $LOAD_PATH.unshift(File.dirname(__FILE__))
+require 'bundler/setup'
+require './file_upload'
run FileUpload
-