Ruby on Rails: Cannot Activate tmail
Ruby on Rails: Cannot Activate tmail
Gem::LoadError: can't activate tmail (= 1.2.3.1), already activated tmail-1.2.7.1. Make sure all dependencies are added to Gemfile.
Gem::LoadError: can't activate tmail (= 1.2.3.1), already activated tmail-1.2.7.1. Make sure all dependencies are added to Gemfile.
I get this when I run a certain rake task. I've added it to the Gemfile, and I've already run gem uninstall tmail
and gem install tmail
.
gem uninstall tmail
gem install tmail
1 Answer
1
After updating your Gemfile
always run bundle install
.
Gemfile
bundle install
Also, when bundle install
not help, try deleting your Gemfile.lock (file) and then do bundle install
.
bundle install
bundle install
When that not fix your issue try to run bundle update
for resolving dependencies, but that command can update all gems, so be careful with this task.
bundle update
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
Comments
Post a Comment