File tree 1 file changed +12
-9
lines changed
1 file changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -2,14 +2,17 @@ source 'https://rubygems.org'
2
2
3
3
gemspec
4
4
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
6
15
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 ) )
15
18
end
You can’t perform that action at this time.
0 commit comments