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
-1
votes
1 answer

Rails & Pow - how do I print something to stdout when my server script is being executed in dev?

So in python/django I can just put the line print 'something' in my code and something will get printed to the console. How do I do this in Rails? I'm on Mac using Pow as my development server.
tadasajon
  • 14,276
  • 29
  • 92
  • 144
1 2 3
9
10