hassox / wikimedia-mobile forked from hcatlin/wikimedia-mobile

Wikimedia's Mobile Site in Merb

This URL has Read+Write access

Hampton Catlin (author)
Tue Jan 06 22:55:20 -0800 2009
wikimedia-mobile / config.ru
100644 24 lines (18 sloc) 0.647 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# config.ru
require 'rubygems'
 
# Uncomment if your app uses bundled gems
#gems_dir = File.expand_path(File.join(File.dirname(__FILE__), 'gems'))
#Gem.clear_paths
#$BUNDLE = true
#Gem.path.unshift(gems_dir)
 
require 'merb-core'
 
Merb::Config.setup(:merb_root => File.expand_path(File.dirname(__FILE__)),
                   :environment => ENV['RACK_ENV'])
Merb.environment = "production" #Merb::Config[:environment]
Merb.root = Merb::Config[:merb_root]
Merb::BootLoader.run
 
# Uncomment if your app is mounted at a suburi
#if prefix = ::Merb::Config[:path_prefix]
# use Merb::Rack::PathPrefix, prefix
#end
 
run Merb::Rack::Application.new