Created
April 8, 2011 10:30
-
-
Save silviorelli/909614 to your computer and use it in GitHub Desktop.
config.ru for using POW Rack server with Rails 2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Rails.root/config.ru | |
require "./config/environment" | |
run ActionController::Dispatcher.new |
thank you!
FYI: this really isn't the best way to do things. I had some Rails metal stuff and couldn't get it to load until I pasted the contents of "rake middleware" into the config.ru file. Mine ended up looking like so:
# Rackup file required for Pow.cx
require File.dirname(__FILE__) + '/config/environment'
use Rack::Lock
use ActionController::Failsafe
use ActionController::Session::RedisSessionStore
use Rails::Rack::Metal
use ActionController::ParamsParser
use Rack::MethodOverride
use Rack::Head
use ActionController::StringCoercion
use Sass::Plugin::Rack
use ActiveRecord::ConnectionAdapters::ConnectionManagement
use ActiveRecord::QueryCache
run ActionController::Dispatcher.new
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!