Created
September 27, 2010 03:30
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
$ rvm install macruby-nightly | |
$ rm -rf /Library/Frameworks/MacRuby.framework | |
$ rm /usr/local/bin/mac* | |
$ rm /usr/local/bin/hotcocoa | |
Install nightly build version | |
$ wget http://www.macruby.org/files/nightlies/macruby_nightly-latest.pkg | |
$ open macruby_nightly-latest.pkg | |
$ cd /Users/jaigouk/Developer/.rvm/rubies/macruby-nightly/bin | |
$ mate . |
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
Change these lines in each exec files | |
exec "/Library/Frameworks/MacRuby.framework/Versions/0.6/usr/bin/macerb" "$@" | |
exec "/Library/Frameworks/MacRuby.framework/Versions/0.6/usr/bin/macruby" "$@" | |
exec "/Library/Frameworks/MacRuby.framework/Versions/0.6/usr/bin/mactestrb" "$@" | |
exec "/Library/Frameworks/MacRuby.framework/Versions/0.6/usr/bin/macirb" "$@" | |
exec "/Library/Frameworks/MacRuby.framework/Versions/0.6/usr/bin/macrake" "$@" | |
exec "/Library/Frameworks/MacRuby.framework/Versions/0.6/usr/bin/macrdoc" "$@" | |
exec "/Library/Frameworks/MacRuby.framework/Versions/0.6/usr/bin/macri" "$@" | |
exec "/Library/Frameworks/MacRuby.framework/Versions/0.6/usr/bin/macgem" "$@" | |
to these => | |
exec "/Library/Frameworks/MacRuby.framework/Versions/0.7/usr/bin/macerb" "$@" | |
exec "/Library/Frameworks/MacRuby.framework/Versions/0.7/usr/bin/macruby" "$@" | |
exec "/Library/Frameworks/MacRuby.framework/Versions/0.7/usr/bin/mactestrb" "$@" | |
exec "/Library/Frameworks/MacRuby.framework/Versions/0.7/usr/bin/macirb" "$@" | |
exec "/Library/Frameworks/MacRuby.framework/Versions/0.7/usr/bin/macrake" "$@" | |
exec "/Library/Frameworks/MacRuby.framework/Versions/0.7/usr/bin/macrdoc" "$@" | |
exec "/Library/Frameworks/MacRuby.framework/Versions/0.7/usr/bin/macri" "$@" | |
exec "/Library/Frameworks/MacRuby.framework/Versions/0.7/usr/bin/macgem" "$@" |
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
$gem install rspec --pre |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment