Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix error in Gem version comparison #26

Merged
merged 1 commit into from
Nov 15, 2024

Conversation

diko4096
Copy link
Contributor

Gem::Version can be compared with another Gem::Version, not with string. It were caused crash on the boot time:

/srv/endpoints/vendor/ruby/3.0.0/gems/kicks-3.1.1/lib/active_job/queue_adapters/sneakers_adapter.rb:2:in >': comparison of Gem::Version with String failed (ArgumentError)
from /srv/endpoints/vendor/ruby/3.0.0/gems/kicks-3.1.1/lib/active_job/queue_adapters/sneakers_adapter.rb:2:in <top (required)>' from /srv/endpoints/vendor/ruby/3.0.0/gems/activesupport-6.1.4/lib/active_support/dependencies.rb:332:in require'
from /srv/endpoints/vendor/ruby/3.0.0/gems/activesupport-6.1.4/lib/active_support/dependencies.rb:332:in block in require' from /srv/endpoints/vendor/ruby/3.0.0/gems/activesupport-6.1.4/lib/active_support/dependencies.rb:299:in load_dependency'
from /srv/endpoints/vendor/ruby/3.0.0/gems/activesupport-6.1.4/lib/active_support/dependencies.rb:332:in require' from /srv/endpoints/vendor/ruby/3.0.0/gems/kicks-3.1.1/lib/sneakers.rb:25:in <top (required)>'
from /srv/endpoints/vendor/ruby/3.0.0/gems/activesupport-6.1.4/lib/active_support/dependencies.rb:332:in require' ...

Gem::Version can be compared with another Gem::Version, not with string
@simi
Copy link
Contributor

simi commented Nov 14, 2024

Can you check this is fixed by upgrading to later RubyGems? rubygems/rubygems@7e0dbb7 Seems RubyGems 3.4+ are ok with this. Happy to merge this, I just want to ensure I do follow what's happening.

@diko4096
Copy link
Contributor Author

Can you check this is fixed by upgrading to later RubyGems? rubygems/rubygems@7e0dbb7 Seems RubyGems 3.4+ are ok with this. Happy to merge this, I just want to ensure I do follow what's happening.

Unfortunately I cant, because I maintain the legacy project, and needed to update only bunny to the latest version. Because there are sneakers used, and it abandoned, I've decided to switch to the kicks in the current environment. I suppose my fix doesn't broke anything, but increase compatibility with former rubygems.

@simi
Copy link
Contributor

simi commented Nov 14, 2024

Can you check this is fixed by upgrading to later RubyGems? rubygems/rubygems@7e0dbb7 Seems RubyGems 3.4+ are ok with this. Happy to merge this, I just want to ensure I do follow what's happening.

Unfortunately I cant, because I maintain the legacy project, and needed to update only bunny to the latest version. Because there are sneakers used, and it abandoned, I've decided to switch to the kicks in the current environment. I suppose my fix doesn't broke anything, but increase compatibility with former rubygems.

Can you at least check what's your RubyGems version?

@michaelklishin michaelklishin merged commit a85fefe into ruby-amqp:main Nov 15, 2024
4 checks passed
@michaelklishin
Copy link
Member

@diko4096 fair enough, this should work perfectly fine with recent RubyGems but I second @simi's question about what RubyGems version you run.

@diko4096
Copy link
Contributor Author

@michaelklishin rubygems version 3.2.22 (in my legacy project) has that issue, but I've checked it with 3.5.23 and there it works fine. My request just for backward compatibility. Thanks a lot.

@texpert
Copy link
Contributor

texpert commented Nov 15, 2024

Hmm, I'm late to the party, but the right way to check for a constant being defined is:

Object.const_defined? "ActiveJob", because defined?(FOO) # => "constant"

@michaelklishin
Copy link
Member

michaelklishin commented Nov 15, 2024

@texpert you are welcome to submit a PR but defined?(SomethingNonExistent) returns nil which evaluates to false, so there is no practical difference. The readability of both is very comparable, too.

@texpert
Copy link
Contributor

texpert commented Nov 15, 2024

Hm, yes, @michaelklishin , you're right, sorry for the noise!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants