Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[gemspec] Enforce only major and minor parts of required Ruby version (…
…#622) For example, if the `.ruby-version` file has `3.3.3`, then the required Ruby version will be `>= 3.3.0`. My motivation for making this change is that it seems that this gem requiring Ruby 3.3.3 is causing a problem for dependabot updates: https://github.com/davidrunger/dotfiles/network/updates/848692807 ``` Bundler::SolveFailure with message: Could not find compatible versions Because Ruby >= 3.3.3 could not be found in the local ruby installation and fcom >= 0.7.0 depends on Ruby >= 3.3.3, fcom >= 0.7.0 cannot be used. So, because Gemfile depends on fcom >= 0.7.0, <= 0.8.0, version solving has failed. ``` I think dependabot might currently use Ruby 3.3.1, so hopefully relaxing from `>= 3.3.3` to `>= 3.3.0` will fix that issue.
- Loading branch information