Rb-inotify-0.9.6.gem is missing from rubygems.org

I get a gem missing message from Maven:

http://production.s3.rubygems.org/gems/rb-inotify-0.9.6.gem http://s3.amazonaws.com/production.s3.rubygems.org/gems/rb-inotify-0.9.6.gem Could not find artifact rubygems:rb-inotify:gem:0.9.6 in rubygems-release (http://rubygems-proxy.torquebox.org/releases) https://rubygems.org/gems/rb-inotify/versions/0.9.6 

This gem is addicted to some other gem, and I cannot manually configure the version.

What can I do?

+8
rubygems
source share
2 answers

This seems to be a problem with the rubygems torquebox proxy. This is probably a temporary problem and will be resolved soon.

Until then: The original rubygems website has version 0.9.7 for rb-inotify gem. You can download it from there using gem fetch rb-inotify -v 0.9.7 and put it in your local maven repository, as well as create a sha1 file for the gem.

If you cannot / do not want to go through these steps, I downloaded the 0.9.7 file from my maven website at: http://www.filedropper.com/097_1

This file needs to be extracted to ~ / .m2 / repository / rubygems / rb-inotify / 0.9.7 (Assuming your local maven is in .m2 under your user directory)

Update: a modified version from 0.9.6 to 0.9.7, since 0.9.6 was also pulled from rubigems.

+5
source share

I had the same problem with the gradle-compass plugin. My fix is ​​to force the compass to use version 0.9.5, like this in the build.gradle file:

 configurations.all { resolutionStrategy.force 'rubygems:rb-inotify:0.9.5' } 
+6
source share

All Articles