Installing Ruby on Rails on OSX (snow leopard)
Just some notes i might update while going through the procedure.
To start with, gem might complain that bundler requires a higher version. Something like this might happen, when you run “sudo gem install rails”:
ERROR: Error installing bundler: bundler requires RubyGems version >= 1.3.6 ERROR: Error installing bundler: bundler requires RubyGems version >= 1.3.6
If you run into that, you need to ask gem to update itself:
sudo gem update --system
Then rails’ installation should work. Actually i get errors installing the documentation for some gems. Should look into that…
Related:
- Sproutcore on OSX snow leopard It recently came to my attention the existence of this...
- Recover iSync after removing it from OSX One of these days, accidentally, I removed isync from my...
Categorised as: computers, observations, software development, tips
Thanks! it worked perfect!
Agreed, perfect. Worked on my 2010 Macbook Air running 10.6.8. I had to install XCode to fix my other error related to sqllite.
Yep,
Installing ri documentation for rails-3.0.9…
file 'lib' not found
and
Installing RDoc documentation for rails-3.0.9…
file 'lib' not found
are quite common, there seem to be lots of posts regarding this issue, as it leads to sqlite3 errors, among others. If I find anything I'll let you know.
god bless you
Thanks! that was excatly what I was looking for !