summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorazul <azul@riseup.net>2013-03-01 03:49:42 -0800
committerazul <azul@riseup.net>2013-03-01 03:49:42 -0800
commit2eaa2238224408532b5e4eb41662e6dece7ac390 (patch)
treeae459b3522bfcd88e053c55b41b0f2aa7878d9a2
parent2d59c67f5991e31c2acd829afffc43fc47d5c474 (diff)
parent09389ccdad2ace4c2ae71ba93dc4ad78a520e7dd (diff)
Merge pull request #35 from azul/feature/update-install-instructions
use binstubs to make sure we use the right rails version
-rw-r--r--INSTALL.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 4a2a5b9..7e95b76 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -10,10 +10,10 @@ Install git, ruby 1.9, rubygems and couchdb on your system. Then run
gem install bundler
git clone git://github.com/leapcode/leap_web.git
cd leap_web
-bundle install
git submodule init
git submodule update
-bundle exec rails server
+bundle install --binstubs
+bin/rails server
```
You will find Leap Web running on `localhost:3000`. Check out the Cert Distribution section below for setting up the cert and server config.
@@ -50,7 +50,7 @@ We install most gems we depend upon through [bundler](http://gembundler.com). Fi
Then install all the required gems:
```
- bundle install
+ bundle install --binstubs
```
## Setup ##
@@ -72,7 +72,7 @@ If you want to use that functionality please add your provider files the public/
## Running ##
```
-bundle exec rails server
+bin/rails server
```
You'll find Leap Web running on `localhost:3000`