-
Notifications
You must be signed in to change notification settings - Fork 257
FAQ
No. But we hope to support it in the future.
JRuby's select
is buggy. Theres an open ticket on their issue tracker.
The issue was original reported on #14.
Only OSX 10.6+ is officially supported.
However there are some attempts to get Pow running on Linux. The dns resolver and firewall rules are specific features of OSX. But the core server only depends on node. With the combination of dnsmasq
and some iptable
rules you might be able to get it up and running.
Check this fork: https://github.com/ysbaddaden/pow
Yes, but the installer only includes a node binary only for 64-bit machines. You'll need to install Pow from source.
Add this:
require File.dirname(__FILE__) + '/config/environment'
run ActionController::Dispatcher.new
First clone the git repository:
$ git clone https://github.com/37signals/pow.git
Install via npm (you'll need version 1.0 or higher):
$ cd pow
$ npm install --global
Yes, if Rack support is configured using the rack-legacy gem. Instructions can be found in this blog post.
https://github.com/37signals/pow/issues/98
# Rack Dispatcher
# Require your environment file to bootstrap Rails
require File.dirname(__FILE__) + '/config/environment'
# Dispatch the request
run ActionController::Dispatcher.new