Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove bundler development dependency
We are currently in the [process](chef/chef-workstation#1123) of updating our package to use Ruby 2.7 which switched to using Bundler 2.x. We don't want to keep including bundler 1.x inside the package we generate so we have started going through and removing development dependencies on bundler. This works for us because all recent versions of Ruby include bundler (`gem install bundler` is unnecessary). `bundle install` in this directory still works. Our companies Ruby development has started removing bundler as a dev dependency to make the upgrade to Ruby 2.7 easier. Another option would be to remove the version specification, but that does cause a warning when doing `gem build`: ``` $ gem build rb-fsevent.gemspec WARNING: open-ended dependency on bundler (>= 0, development) is not recommended use a bounded requirement, such as '~> x.y' WARNING: See http://guides.rubygems.org/specification-reference/ for help ``` This is just a warning, but it is an annoying one. What would you think of either of these solutions?
- Loading branch information