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

Generating the User Model

I get the following error message when I try "rake db:migrate":

Johns-MacBook-Air:downloadedtreebook johnjeong$ rake db:migrate rake aborted! You have already activated rake 10.1.0, but your Gemfile requires rake 0.9.2.2. Using bundle exec may solve this. /usr/local/rvm/gems/ruby-1.9.3-p392@global/gems/bundler-1.2.4/lib/bundler/runtime.rb:31:in block in setup' /usr/local/rvm/gems/ruby-1.9.3-p392@global/gems/bundler-1.2.4/lib/bundler/runtime.rb:17:insetup' /usr/local/rvm/gems/ruby-1.9.3-p392@global/gems/bundler-1.2.4/lib/bundler.rb:116:in setup' /usr/local/rvm/gems/ruby-1.9.3-p392@global/gems/bundler-1.2.4/lib/bundler/setup.rb:7:in<top (required)>' /Users/johnjeong/downloadedtreebook/config/boot.rb:6:in <top (required)>' /Users/johnjeong/downloadedtreebook/config/application.rb:1:in<top (required)>' /Users/johnjeong/downloadedtreebook/Rakefile:5:in `<top (required)>' (See full trace by running task with --trace)

Please help!

1 Answer

Tomasz Foster
Tomasz Foster
19,442 Points

Open your Gemfile and make sure you have the following:

gem 'rake', '~> 10.1.0'

and not:

gem 'rake' or gem 'rake', '~> 0.9.2.2' then run: bundle install and try your rake db:migrate command again.