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

Ruby Build a Todo List Application with Rails 4 Build a Todo List Application with Rails 4 Set up Git and Add Gems

I am stuk on bundle!

Hello Jason Seifer, I get this error when I try bundle.

Here is my code:

source 'https://rubygems.org'


gem 'rails', '4.0.1'
gem 'sqlite3'
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 1.2'

group :doc do
  gem 'sdoc', require: false
end

group :development, :test do
    gem 'rspec-rails', '~> 2.0'
end

group :test do 
    gem 'capybara', '~> 2.1.0'
end

Image: http://i.imgur.com/p2BDjrX.png

3 Answers

Have you tried installing the gem with current version listed in the error? Run: gem install (the gem that can't be updated in the error with correct version). Also make sure gem bundler is installed. I'm just curious, what OS terminal are you using in that image? I typically run rails in Linux ubuntu

Thanks! It is now working! Happy coding!

I am running mac OSX 10 and using the Treehouse VM.

Here is what I get when I run gem install nokogiri