-
Notifications
You must be signed in to change notification settings - Fork 11
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
Conversation
Gem::Version can be compared with another Gem::Version, not with string
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 |
Can you at least check what's your RubyGems version? |
@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. |
Hmm, I'm late to the party, but the right way to check for a constant being defined is:
|
@texpert you are welcome to submit a PR but |
Hm, yes, @michaelklishin , you're right, sorry for the noise! |
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' ...