We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Pow is a popular Mac development hosting environment. Spar is completely compatible with Pow, but you'll need to add a few files to get it running.
If you haven't already, your first task is to install Pow:
curl get.pow.cx | sh
Next, you need to add two files to your SPar app. The first is a file called Gemfile that looks like this:
Gemfile
source "http://rubygems.org" gem 'spar'
The second is a file called config.ru that looks like this:
config.ru
require 'bundler' Bundler.require run Spar.app
Boom! You can now create a new Pow app pointed at your Spar app.