Merge pull request #48622 from skipkayhil/hm-listen-lower-bound

Add lower bound to Listen gem requirement
This commit is contained in:
Guillermo Iguaran 2023-07-01 22:10:48 -07:00 committed by GitHub
commit f46d3452ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
* Improve error message when EventedFileUpdateChecker is used without a
compatible version of the Listen gem
*Hartley McGuire*
* Add `:report` behavior for Deprecation
Setting `config.active_support.deprecation = :report` uses the error

View File

@ -1,6 +1,6 @@
# frozen_string_literal: true
gem "listen"
gem "listen", "~> 3.5"
require "listen"
require "set"