Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
With the current dependency specification, we get the following warnings when building the gem: ``` WARNING: open-ended dependency on actionpack (>= 5.0) is not recommended if actionpack is semantically versioned, use: add_runtime_dependency 'actionpack', '~> 5.0' WARNING: open-ended dependency on actionview (>= 5.0) is not recommended if actionview is semantically versioned, use: add_runtime_dependency 'actionview', '~> 5.0' WARNING: open-ended dependency on activerecord (>= 5.0) is not recommended if activerecord is semantically versioned, use: add_runtime_dependency 'activerecord', '~> 5.0' WARNING: open-ended dependency on kaminari (>= 1.0) is not recommended if kaminari is semantically versioned, use: add_runtime_dependency 'kaminari', '~> 1.0' WARNING: See https://guides.rubygems.org/specification-reference/ for help ``` I think this makes sense. We don't know which changes Rails 8 or Kaminari 2 may bring.
- Loading branch information