Skip to content

Instantly share code, notes, and snippets.

@krotscheck
Created February 28, 2012 02:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save krotscheck/1928572 to your computer and use it in GitHub Desktop.
Save krotscheck/1928572 to your computer and use it in GitHub Desktop.
How to install sproutcore from source.
# Do this first
sudo gem install sproutcore
sudo gem install bundler
# Do this next
mkdir ~/workspace
cd ~/workspace
sc-gen project my_sproutcore_project
git clone git@github.com:sproutcore/abbot.git
cd my_sproutcore_project
mkdir frameworks
cd frameworks
git clone git@github.com:sproutcore/sproutcore.git
cd ..
echo 'gem "sproutcore", :path => "../abbot"' > Gemfile
bundle install --binstubs
./bin/sc-gen app myapp
./bin/sc-server
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment