Questions tagged [rack-pow]

Pow is a zero-config Rack server for Mac OS X created by 37signals.

Pow is a zero-configuration Rack server for Mac OS X. It makes developing Rails and Rack applications as frictionless as possible. You can install it in ten seconds and have your first app up and running in under a minute. No mucking around with /etc/hosts, no compiling Apache modules, no editing configuration files or installing preference panes. And running multiple apps with multiple versions of Ruby is trivial.

To serve a Rack app, just symlink it into ~/.pow directory. Let's say you're working on an app that lives in ~/Projects/myapp. You'd like to access it at http://myapp.dev/. Setting it up is as easy as:

$ cd ~/.pow
$ ln -s ~/Projects/myapp

The name of the symlink (myapp) determines the hostname you use (myapp.dev) to access the application it points to (~/Projects/myapp).

136 questions
36
votes
7 answers

Is there an easy way to have pow serve https?

pow is great, but many things in my app assume https, and it would be a pain to go through them all and add "if not dev environment". Is it possible to have pow serve https?
John Bachir
  • 22,495
  • 29
  • 154
  • 227
32
votes
4 answers

pow says: Bundler::GemNotFound: Could not find rake-0.9.2.2 in any of the sources

I have a rails app that runs fine with rails s, but when I try to load it using pow I'm getting this error: Bundler::GemNotFound: Could not find rake-0.9.2.2 in any of the…
rda3000
  • 1,410
  • 1
  • 18
  • 31
28
votes
6 answers

Can I install Pow on my Ubuntu?

I find Pow great on my Mac. It makes the Rails dev environment setup easy. Can I install it on my Ubuntu? I can't find any info about it. If not, is there anything like it for Linux?
Sam Kong
  • 5,472
  • 8
  • 51
  • 87
28
votes
3 answers

How to use Byebug with a remote process (e.g., pow)

How do I connect to a remote debugging instance of Byebug (for use with Pow, etc)?
Joseph Siefers
  • 1,282
  • 1
  • 12
  • 23
17
votes
4 answers

Can I get Rails debugging output in Pow similar to WEBrick?

When I use rails/server (WEBrick) I get constant debug info (queries, etc) from my rails app as console output. Is there a way to get this debug output with Pow? Thanks
Mitciv
  • 813
  • 3
  • 15
  • 21
14
votes
3 answers

Pow domains not loading in Chrome

So, I struggled with this for the last hour. For some reason, my POW domains always hit a www.website-unavailable.com error in Chrome. Rails servers work great from the traditional rails s and pull up at localhost:3000. I'm using Anvil.app to manage…
andrewmart.in
  • 1,563
  • 14
  • 23
13
votes
3 answers

Remotely viewing web pages served by pow.cx

Using WEBrick you could navigate to an app you were serving from another device/virtual machine by navigating to your.ip.address.here:port Is it possible to do something similar with pow.cx?
jsteiner
  • 308
  • 3
  • 11
11
votes
2 answers

"Pow is installed" shows up on all my sites now

I installed Pow with RVM for a rails app I'm working on. It's fine. It's the other sites that now all say "Pow is installed". I'm sure it's a simple setting, but I'm not able to find it. Has anyone run into this before? I'm running MAMP on Snow…
Chris
  • 6,102
  • 5
  • 24
  • 30
10
votes
0 answers

Pow: Error: timeout: waiting for /tmp/nack.*.*.sock

Every time I try to open a local application through Pow I am greeted with the following error (* = numbers): Error: timeout: waiting for /tmp/nack.*.*.sock at null._onTimeout (/Users/pain/Library/Application…
firedev
  • 20,898
  • 20
  • 64
  • 94
9
votes
2 answers

Alternatives for Pow on windows?

I love pow for mac (http://pow.cx) however I have a few co-workers that are on Windows, is there anything that they can use to have the power of pow?
Andrew K
  • 1,339
  • 15
  • 26
9
votes
3 answers

Pow, RVM and ZSH not working together

I'm trying to get Octopress (http://octopress.org/) working, but I'm having some issues. I'm using POW (http://pow.cx/) and it seems to not load the correct Ruby version for me (using RVM). It always uses the RVM default ruby version and not the one…
Linus
  • 2,799
  • 3
  • 29
  • 43
8
votes
2 answers

ruby-debug with Pow -- breakpoints never hit

I'm trying to use ruby-debug with Pow. Rails 3 app. I have done everything here: https://gist.github.com/1098830 I've restarted the server and machine several times. I can get rdebug to connect: → rdebug -c Connected. but it never stops at the…
99miles
  • 10,942
  • 18
  • 78
  • 123
8
votes
3 answers

Can't seem to access .xip.io URL from my iPhone when running Rails app with Pow

I've tried accessing my Rails app running with Pow (4.3) from my iPhone 5 but I'm running into issues... If I type my_app.192.168.2.11.xip.io: it runs OK on my development machine (i.e. the machine with the 192.168.2.11 LAN address) it doesn't find…
Mick F
  • 7,312
  • 6
  • 51
  • 98
8
votes
1 answer

Rails, pow and Library not loaded: /usr/local/lib/libsqlite3.0.8.6.dylib

I didn't work on this rails app for a couple of weeks. Yesterday I got back to it, first opening the .dev URL (i'm using pow) and it gave this error message: LoadError: dlopen([...]/vendor/bundle/gems/sqlite3-1.3.7/lib/sqlite3/sqlite3_native.bundle,…
zbrox
  • 2,683
  • 3
  • 25
  • 29
7
votes
2 answers

Pow and VMware Fusion

I am using Pow to serve a Rack application on Mac OS X. http://myapp.dev correctly displays the application. On the same machine I am using VMware Fusion to run Windows 7 while sharing the Mac's network connection. I would like to test the Rack…
Martin Harrigan
  • 1,044
  • 11
  • 28
1
2 3
9 10