Created
October 26, 2013 22:39
-
-
Save sherbondy/7175410 to your computer and use it in GitHub Desktop.
Poverty. Developing on mac os without root is hard.
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
`source /afs/athena.mit.edu/user/e/t/ethanis/MacData/.rvm/scripts/rvm` | |
rvm get head | |
rvm autolibs disable | |
rvm list remote | |
rvm install ruby-1.9.3-p327 --binary | |
rvm alias create default ruby-1.9.3-p327 | |
rvm use default | |
gem install cocoapods | |
pod install | |
# whenever you install an app, and it reports being broken, do: | |
xattr -d com.apple.quarantine AppName.app | |
# Getting rubymotion to work without root: | |
#1. Install on another machine | |
#2. Copy the contents of /Library/RubyMotion to ~/Library/RubyMotion on the target machine | |
#3. Go through the contents of ~/Library/RubyMotion, | |
#do a grep along the lines of: | |
#grep -r "Library" * | |
#to find all of the instances of /Library that must be changed to ~/Library | |
#nomad-cli.com rocks. | |
#`ios` and `ipa` all the way. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment