Put this in your gemfile:
gem 'rake' , '>= 0.9.2'
and run bundle update
you need to provide more details about which environment you use this in:
- which OS?
- Do you use RVM?
- Is this a new RVM setup for every chance?
1) Try running this:
gem list | rake
what result do you get?
2) If you do not see rake on the output, do the following:
gem install rake
and then try rake db:migrate again
3) If you see rake, but it still doesnβt work, do the following:
which rake
what result do you get? it should look something like this:
~/.rvm/gems/ruby-1.9.2-p0/bin/rake
source share