Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error in celluloid gem installation

Recently I have update my rails version to 4.2.3 and ruby version to ruby-2.2.3. After that when I do bundle it gives following error:

$ bundle
Fetching gem metadata from http://rubygems.org/..........
Fetching version metadata from http://rubygems.org/...
Fetching dependency metadata from http://rubygems.org/..
Could not find celluloid-0.16.1 in any of the sources

Could you help me?

like image 802
Siva Gollapalli Avatar asked Aug 24 '15 12:08

Siva Gollapalli


1 Answers

Version 0.16.1 of the celluloid gem was yanked and is not available anymore. You will need to downgrade to 0.16.0 or upgrade to 0.17.x. Run:

bundle update celluloid
like image 59
spickermann Avatar answered Sep 19 '22 12:09

spickermann