Created
February 28, 2012 02:10
-
-
Save krotscheck/1928572 to your computer and use it in GitHub Desktop.
How to install sproutcore from source.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 [email protected]:sproutcore/abbot.git | |
cd my_sproutcore_project | |
mkdir frameworks | |
cd frameworks | |
git clone [email protected]: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