Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is related to this question:

http://stackoverflow.com/questions/3179797/how-to-use-rubytorrent-or-other-gems

I thought RubyGems is a package manager, similar to apt-get on Ubuntu...

So when do we need to require 'rubygems' in our code?

share|improve this question

1 Answer

up vote 6 down vote accepted

Use require 'rubygems' when you are using a gem that you installed with Rubygems. The reason is that Ruby uses Rubygems to determine the path of the gem that Rubygems installed. (is unable to locate the gem you want to use)

Alternatively, you can pass the -rubygems flag when you invoke your script, or set export RUBYOPT=rubygems in your profile (~/.bashrc or ~/.bash_profile or ~/.profile) which is basically the same as the flag, except it is implicit.

On 1.9, rubygems is required implicilty, and you shouldn't have to do that.

Here are some docs about it http://docs.rubygems.org/read/chapter/3

Note: Some have built solutions (zozo and faster_rubygems) to avoid Rubygems overhead http://www.ruby-forum.com/topic/212463

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.