What are the Conventional GEM PATHS for Ruby under OS X 10.5? What are the Conventional GEM PATHS for Ruby under OS X 10.5? ruby ruby

What are the Conventional GEM PATHS for Ruby under OS X 10.5?


Yep. That all looks pretty standard to me. My mac running MacOS 10.5 similarly has nothing in ~/.gem/ruby/1.8/gems/ and quite a bit in the other two locations.


As Gabe mentioned, yes, this is normal.

A little more info:

/System/Library/Frameworks/Ruby.framework <-- used system wide for all users, usually owned by root.When you 'sudo gem install ...' the gem you're installing goes here...

/Users/matt/.gem <-- user 'matt' has his own gem directory. every user gets one.

When you just 'gem install' as 'matt' it will fall-back to your private gem dir. This gets created automatically the first time it's needed.