With basic fix from (1) of Mountain Lion for Rails projects, most of application should run as well as in Lion. While bad things always happen unexpectedly. When creatig a new rails app, or adding a new ruby version to RVM, some exceptions would be like this:
1 2 3 4 5 6 7 8 9 10 11 |
|
Believe above is one of the gem version using make, which is somehow not defined as the command it should have been. The reasons are you miss GCC 4.2 (if you are using a ruby version older than 1.9.3) and Apple sets the ownership of /usr/local to root. Commands to go:
1 2 3 4 |
|
Unfortunately, now when you install or reinstall a ruby version with RVM, there are still weird errors. Even if many people are happy with work-around solutions like:
http://stackoverflow.com/questions/11660673/install-ree-1-8-7-with-rvm-on-mountain-lion
http://stackoverflow.com/questions/11664835/mountain-lion-rvm-install-1-8-7-x11-error
You can try them, but neither work for me. My last approach is to reinstall RVM from (1.10 to 1.14), then rejoice!
1 2 |
|
(You may be unhappy with the last solution, but I guess Mountain Lion users need to do so soon or later)