Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Dongju Seo
2,339 Pointsrequire 'rubygems' returned 'false' :(
require 'rubygems' returned 'false' :( I even could not find the gem by typing gem install 'rubygems' what should I do?
1 Answer
Tomasz Foster
19,442 PointsA false return from the require method does not indicate an error. It just means that the file has already been loaded. Although, in this case, you shouldn't need to require rubygems but rather at the top of the gemfile you should see:
source 'https://rubygems.org'
and that's where it will look for other gem files that you require. does that help? you can also type in 'gem -v' into the terminal to see what version you have or type in 'gem -h' for more help and commands. hope this helps!
Dongju Seo
2,339 PointsDongju Seo
2,339 Pointsyes, I just found it out that it was not an error form Stackoverflow.. Do you know how to solve this problem? https://teamtreehouse.com/forum/irb-freezing-problem?sort=my-posts