Skip to content

Instantly share code, notes, and snippets.

@ddollar
Created December 6, 2008 14:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ddollar/32885 to your computer and use it in GitHub Desktop.
Save ddollar/32885 to your computer and use it in GitHub Desktop.
# 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.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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment