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

Hi, I am making a Rails application, and when I install the package, 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 outdated / jerked , but my other gems have dependencies with this.

But this project works with another machine and in the production of heroics. How can I successfully install this installation without changing my gemfile? thank

+4
source share
1 answer

Run this:

bundle update --source coffee-script-source

If you receive an error message, follow these steps:

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

Run this:

 gem install rmagick

Hope this helps you.

+12
source

Source: https://habr.com/ru/post/1529162/


All Articles