sidekiq-failures icon indicating copy to clipboard operation
sidekiq-failures copied to clipboard

rubygems not installing v1.0.4

Open chrishough opened this issue 1 year ago • 0 comments

I just noticed the tag on rubygems says 1.0.4 when I install via gem 'sidekiq-failures' however this code repository does not seem to have that tag, and I think rubygems is loading an older version, the 1.0.1 release

Screenshot 2023-04-08 at 10 36 10 AM
➜  backend git:(feature/core-setup) ✗ rbe rails c
Loading development environment (Rails 7.0.4.3)
Ruby 3.2.1-p31
development - (main):0 > Sidekiq::Failures.clear_failures
NoMethodError: undefined method `clear_failures' for Sidekiq::Failures:Module
from (pry):1:in `<main>'
development - (main):0 >

When I install like this, it works just fine, thoughts all? gem 'sidekiq-failures', git: 'https://github.com/mhfs/sidekiq-failures', branch: 'master'

➜  backend git:(feature/core-setup) ✗ rbe rails c
Loading development environment (Rails 7.0.4.3)
Ruby 3.2.1-p31
development - (main):0 > Sidekiq::Failures.clear_failures
2023-04-08T17:37:50.411Z pid=70698 tid=1fky INFO: Sidekiq 7.0.8 connecting to Redis with options {:size=>5, :pool_name=>"internal", :url=>nil}
=> true
development - (main):0 >

chrishough avatar Apr 08 '23 17:04 chrishough