summaryrefslogtreecommitdiff
path: root/config.ru
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2013-12-22 01:45:41 -0800
committerelijah <elijah@riseup.net>2013-12-22 02:00:49 -0800
commit665964bcbba69829a4ff1e7d7bd936f90d49b3f7 (patch)
treebc5356220eaca2465bd135f45edf8000d6c254be /config.ru
parent5bf1462140a7aa17ea815ccc5105ace6fa878d83 (diff)
locale prefix support:
* set locale based on request header * enforce locale path prefix when current locale is not the default * note: don't use root_path anymore, instead use home_path
Diffstat (limited to 'config.ru')
-rw-r--r--config.ru3
1 files changed, 3 insertions, 0 deletions
diff --git a/config.ru b/config.ru
index e798eef..7b4c2bd 100644
--- a/config.ru
+++ b/config.ru
@@ -1,4 +1,7 @@
# This file is used by Rack-based servers to start the application.
+require 'http_accept_language'
+use HttpAcceptLanguage::Middleware
+
require ::File.expand_path('../config/environment', __FILE__)
run LeapWeb::Application