Skip to content

Commit 115fdf8

Browse files
committed
dev: add logger to the Gemfile
Logger has been moved out of the default gems in Ruby 3.5. Also group the gems in the Gemfile under the "development" group
1 parent a95f70c commit 115fdf8

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

Gemfile

+12-9
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,17 @@ source 'https://rubygems.org'
22

33
gemspec
44

5-
gem "net-ftp" if Gem::Requirement.new("> 3.1.0.dev").satisfied_by?(Gem::Version.new(RUBY_VERSION))
5+
group :development do
6+
gem "minitar", "0.9"
7+
gem "minitest", "~> 5.15" # open range for ruby 2.3 support
8+
gem "minitest-hooks", "1.5.2"
9+
gem "rake", "13.2.1"
10+
if RUBY_VERSION >= "3.4"
11+
gem "webrick", git: "https://github.com/ruby/webrick" # shouldn't be necessary to pin once webrick 1.8.2 or 1.9.0 is released
12+
else
13+
gem "webrick"
14+
end
615

7-
gem "minitar", "0.9"
8-
gem "minitest", "~> 5.15" # open range for ruby 2.3 support
9-
gem "minitest-hooks", "1.5.2"
10-
gem "rake", "13.2.1"
11-
if RUBY_VERSION >= "3.4"
12-
gem "webrick", git: "https://github.com/ruby/webrick" # shouldn't be necessary to pin once webrick 1.8.2 or 1.9.0 is released
13-
else
14-
gem "webrick"
16+
gem "net-ftp" if Gem::Requirement.new("> 3.1.0.dev").satisfied_by?(Gem::Version.new(RUBY_VERSION))
17+
gem "logger", "1.6.5" if Gem::Requirement.new("> 3.5.0.dev").satisfied_by?(Gem::Version.new(RUBY_VERSION))
1518
end

0 commit comments

Comments
 (0)