master
bash scripts, aliases, other misc things go here — Read more
After switching to leapard_ruby on Snow Leopard (OS X 10.6), anytime ruby is used (ruby, irb, rake) an empty folder named '~' is created in the current directory. This does not happen when switched to ruby_191.
It appears the problem is with setting the GEM_PATH when using Leopard Ruby. The export on line 6 does not need quotations around the path.
With quoatations: [~] echo $GEM_PATH ~/.gem/ruby/1.8:/Library/Ruby/Gems/1.8:/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8
Without quotations: [~] echo $GEM_PATH /Users/geoffrey/.gem/ruby/1.8:/Library/Ruby/Gems/1.8:/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8
Somehow this is causing the mysterious '~' folders.
It appears the problem is with setting the GEM_PATH when using Leopard Ruby. The export on line 6 does not need quotations around the path.
With quoatations:
[~] echo $GEM_PATH ~/.gem/ruby/1.8:/Library/Ruby/Gems/1.8:/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8
Without quotations:
[~] echo $GEM_PATH /Users/geoffrey/.gem/ruby/1.8:/Library/Ruby/Gems/1.8:/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8
Somehow this is causing the mysterious '~' folders.