-
Notifications
You must be signed in to change notification settings - Fork 96
Running from git
Gaute Hope edited this page May 7, 2013
·
8 revisions
You can run the bleeding edge version of sup directly from a git clone:
$ git clone git://github.com/sup-heliotrope/sup.git
$ cd sup
$ ruby -I lib bin/sup
If you wish to test the development branch (latest changes) you can do that by doing:
$ git clone git://github.com/sup-heliotrope/sup.git
$ cd sup
$ git checkout -b develop origin/develop
$ ruby -I lib bin/sup
For more information on how to work with git see for instance: http://gitref.org/ or http://git-scm.com/book.
Either install dependencies manually or install them using bundler from the sup.git directory:
bundle install
another option is to create the sup gem: rake gem
, which requires some dependencies and then install the gem afterwards: gem i pkg/sup-999.gem
.
Check out the wiki page on how to use RVM