Created
November 12, 2012 11:09
-
-
Save Domon/4058731 to your computer and use it in GitHub Desktop.
How to build Fire.app on Mac OS X.
This file contains 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
# Clone Fire.app | |
git clone git://github.com/handlino/FireApp.git | |
# (IMPORTANT) Update git submodules | |
cd FireApp | |
git submodule init | |
git submodule update | |
# Switch to JRuby (I'm using 1.6.7.2.) | |
rvm use jruby | |
# Install the necessary gems | |
bundle install | |
# Build | |
rake rawr:bundle:app | |
# Move the app to anywhere as you like | |
mv package/osx/Fire.app /Applications | |
# Final step: Just open it. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment