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
6
votes
3 answers

SyntaxError on the welcome to rails screen using Pow

I have just set up a new project which displays all the correct info in the about your applications environment window when on http://localhost:3000/ but when I run it at http://egg.dev/ I get: SyntaxError:…
Dave
  • 1,175
  • 2
  • 21
  • 49
6
votes
3 answers

Does Jekyll work with Pow?

How do I get Jekyll to work with Pow?
ma11hew28
  • 121,420
  • 116
  • 450
  • 651
6
votes
2 answers

Pry-Remote with Pow on Rails 4

I'm busy with (finally) upgrading to Rails 4 and I've run into a problem with Pry-remote. Problem: When added binding.remote_pry to my code it breaks the code but when I can't get into the debugger by typing pry-remote. This used to work when…
FastSolutions
  • 1,809
  • 1
  • 25
  • 49
6
votes
3 answers

Bundler::RubyVersionMismatch: Your Ruby version is 1.9.3, but your Gemfile specified 2.0.0

I am using a Mac with Pow, Ruby, Rails and a bunch of useful gems. I recently got this error whenever I try to open my app. Bundler::RubyVersionMismatch: Your Ruby version is 1.9.3, but your Gemfile specified 2.0.0 I understand the error, but I…
Liyali
  • 5,643
  • 2
  • 26
  • 40
6
votes
5 answers

POW/Rails error: Error starting applicationBundler::GemNotFound: Could not find minitest-4.7.5 in any of the sources

I just had to remove RVM and reinstall, and then installed Ruby 2.0.0 I can run rails console from command line in the project, but can't get it to load in the browser. I was reading through some answers on here about .bash_profile and .bashrc and…
Joel Grannas
  • 2,016
  • 2
  • 24
  • 46
6
votes
3 answers

Environment variable in Rails console and Pow

I can't access env variables in the Rails console, while in the application they work. In .powenv I have export SENDGRID_PASSWORD="123" In config/initializers/mail.rb there is: ActionMailer::Base.smtp_settings = { :password =>…
Martin Petrov
  • 2,633
  • 4
  • 30
  • 44
5
votes
3 answers

Rails : How to get parallels running with Pow

I've recently starting using Pow for local Rails application development. I typically use parallels 7 for cross-browser testing. I'm running into an issue where my POW development url - e.g. somesubdomain.domain.dev - is not accessible from the…
Erik Lott
  • 697
  • 1
  • 9
  • 17
5
votes
2 answers

Debugging in RubyMine with Pow as a server - Ruby 2.1.1 + Rails 4

I have started using RubyMine 6. I am working on a Rails 4, Ruby 2.1.1 project. I am not able to find how to debug into RubyMine with Pow as a server. Can you please point me to the right direction?
Moon
  • 33,439
  • 20
  • 81
  • 132
5
votes
1 answer

File upload not working with Rails 4 in development using Pow and Nginx

I am using Pow and Nginx to serve my Rails 4 app in development. A simple file upload is returning 500 error and the request is not reaching the Rails controller. I assume this is the case because there is no mention of the request in the Rails log.…
rohitmishra
  • 8,739
  • 7
  • 33
  • 34
5
votes
2 answers

prax on ubuntu machine for RoR

Has anyone successfully installed and configured 'prax' https://github.com/ysbaddaden/prax ? I have tried configuring it on multiple pc but no success. There is pow but it works only on OSX. If any other alternative please share.
parthc
  • 51
  • 2
5
votes
1 answer

Pow does not change ruby version after project upgrade

I use Pow and powify gem with my rails project. Now I try to upgrade my ruby version (from 1.9.3 to 2.0.0, I use RVM) When I switch ruby version, install all gem dependencies, I make sure that app works fine by running rails s and visiting…
mikdiet
  • 9,859
  • 8
  • 59
  • 68
5
votes
1 answer

Rails app running on Pow not reloading for changes in /lib directory

After many googling I've tried adding both of these to my config and yet reloading doesn't happen: config.autoload_paths += %W(#{config.root}/lib) config.autoload_paths += Dir["#{config.root}/lib/**/"] I make changes to files under /lib but…
user1749366
  • 53
  • 1
  • 3
5
votes
6 answers

Error with Pow and rbenv - "cannot load such file -- bundler/setup"

I know there is an entry on the Troubleshooting wiki page for Pow, but I made that change and it still gives the same error. If you notice from the error message below, it seems to be at least trying to use the correct version of ruby from rbenv,…
camdub
  • 867
  • 1
  • 10
  • 22
5
votes
1 answer

Rails 3.2.8 - Share Devise Sessions Across Subdomains with POW

I am trying to set up a simple subdomain-based blog in rails 3.2.8. Basically it will have sites, users (authenticated through Devise), and memberships to connect users to sites. I set up POW so that myapp.dev is working properly. Each site has a…
dvanderb
  • 757
  • 2
  • 8
  • 20
4
votes
1 answer

Pow server: serving external domain via POW_EXT_DOMAINS

Pow server is working fine with .dev domains on my local machine (OS X Lion). I now need it to serve an external domain because I'm developing an ecommerce site and my Payment Service Provider's system need to directly communicate with my…
russellb
  • 315
  • 3
  • 9
1
2
3
9 10