Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Could not find coffee-script-source-1.1.3 in any of the sources

Hi I'm doing Rails app and when I bundle install it returns an error:

Could not find coffee-script-source-1.1.3 in any of the sources

I know that coffee-script-source-1.1.3 gem is deprecated/yanked but my other gems are having dependencies with this.

But this project is working with other machine and in heroku production. How can I successfully bundle install this without changing my gemfile? Thanks

like image 465
AllenC Avatar asked Feb 27 '14 08:02

AllenC


1 Answers

Run this:

bundle update --source coffee-script-source

If you get an error, like this:

An error occurred while installing rmagick (2.13.1), and Bundler cannot continue.

Run this:

 gem install rmagick

I hope it'll help you.

like image 82
MonstroDev Avatar answered Oct 01 '22 00:10

MonstroDev