While trying to rake db:migrate on Heroku . I get the following error.
rake aborted! uninitialized constant Rake::DSL
From what I put together, this seems like a mistake with Rake . 0.9.2. If I use the "gem list", only Rake (0.8.7) is installed locally.
I tried adding "gem" rake "," 0.8.7 "to my gem file and starting the package installation, but then I get the following error.
You have requested: rake = 0.8.7 The bundle currently has rake locked at 0.9.2. Try running `bundle update rake`
If I run bundle update rake , it will go back to 0.9.2 and I will go back to where I started.
Did I miss something obvious here?
source share