Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

heroku client stopped working

It was working just fine this morning but suddenly it giving me such error. I tried to uninstall and install it but no luck. Would appreciate if anyone can help me in it.

c:/Program Files (x86)/Heroku/ruby-1.9.2/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in `require': cannot load such file -- multi_json (LoadError)
from c:/Program Files (x86)/Heroku/ruby-1.9.2/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in `require'
from C:/Users/Somenath/.heroku/client/lib/heroku/helpers.rb:1:in `<top (required)>'
from C:/Users/Somenath/.heroku/client/lib/heroku/cli.rb:1:in `load'
from C:/Users/Somenath/.heroku/client/lib/heroku/cli.rb:1:in `<top (required)>'
from c:/Program Files (x86)/Heroku/ruby-1.9.2/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in `require'
from c:/Program Files (x86)/Heroku/ruby-1.9.2/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in `require'
from c:/Program Files (x86)/Heroku/bin/heroku:27:in `<main>'
like image 523
user3421622 Avatar asked Mar 14 '14 21:03

user3421622


2 Answers

Upgrade to version 3.6.0 of the Heroku Toolbelt.

https://status.heroku.com/incidents/598

like image 143
raidfive Avatar answered Nov 15 '22 08:11

raidfive


I also had the same issue. The error that's occurring is that it's trying to load the "multi_json" gem, but it wasn't on my machine. I doubt it's on your machines either.

What I think happened is that Heroku updated their client and are now using this gem in their code, but they forgot to add it as a dependency so it would be automatically pulled down when updating? That's just my guess.

Regardless, installing the multi_json gem fixed it for me:

gem install multi_json
like image 45
dsw88 Avatar answered Nov 15 '22 06:11

dsw88