-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't start GUI on Mac OS X 10.10 Yosemite #47
Comments
Looks like Yosemite updated the system Ruby location. What do you get with a |
1.8 was updated since Mavericks you can use /System/Library/Frameworks/Ruby.framework/Versions/Current/usr/bin/ruby which should always point to the system Ruby. Also it might be good not to assume only one ruby is in the path (RVM, RBenv, etc) |
Good to know. Unfortunately, we can't rely on RVM/Rbenv rubies as we need to require 'osx/cocoa' which is only available on the system one. |
Even better, I was just wandering if you guys look it up from the PATH since rbenv and rvm both modify the PATH and can give you a different set of issues. |
Actually, I use rbenv and after calling
That's why we need to use the full path to the system one. :) |
Ok, so the problem is that both Ruby 1.8 and RubyCocoa were removed from OS X in Yosemite. Last night I ported the GUI code from RubyCocoa to PyObjC and it seems to work fine. I'll be pusing a new release in a few days including this change as well as some other fixes. |
Cool :) |
The text was updated successfully, but these errors were encountered: