-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add logger dependency to fix warning on Ruby 3.4 (#199)
* Add logger dependency to fix warning on Ruby 3.4 Fixes the following warning: > lib/childprocess.rb:7: warning: logger was loaded from the standard library, but will no longer be part of the default gems since Ruby 3.5.0. Add logger to your Gemfile or gemspec. * Add Ruby head to CI matrix * Pin term-ansicolor gem so CI works on Ruby 2.4 * Fix incorrect rubygems source URL
- Loading branch information
1 parent
4315989
commit 3a954ed
Showing
3 changed files
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
source 'http://rubygems.org' | ||
source 'https://rubygems.org' | ||
|
||
# Specify your gem's dependencies in child_process.gemspec | ||
gemspec | ||
|
||
# Used for local development/testing only | ||
gem 'rake' | ||
|
||
# Newer versions of term-ansicolor (used by coveralls) do not work on Ruby 2.4 | ||
gem 'term-ansicolor', '< 1.8.0' if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.5') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters