Skip to content

Commit

Permalink
Change to restrict listen to an exact version on Ruby less than 2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrmurach committed Jun 26, 2023
1 parent b8f1bc2 commit 405810a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ if RUBY_VERSION == "2.0.0"
gem "kramdown", "1.16.2"
end

if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("2.4.0")
gem "listen", "3.0.8"
end

if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.5.0")
gem "coveralls_reborn", "~> 0.24.0"
gem "simplecov", "~> 0.21.0"
Expand Down

0 comments on commit 405810a

Please sign in to comment.