-
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
and pin webrick to edge because URI parsing has recently been changing in ruby master and the gem and ruby are out of sync at the moment.
- Loading branch information
1 parent
472491c
commit f0bd171
Showing
2 changed files
with
11 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,15 @@ | ||
source 'https://rubygems.org' | ||
|
||
gemspec | ||
|
||
gem "net-ftp" if Gem::Requirement.new("> 3.1.0.dev").satisfied_by?(Gem::Version.new(RUBY_VERSION)) | ||
|
||
# Specify your gem's dependencies in mini_portile2.gemspec | ||
gemspec | ||
gem "minitar", "0.9" | ||
gem "minitest", "~> 5.15" # open range for ruby 2.3 support | ||
gem "minitest-hooks", "1.5.1" | ||
gem "rake", "13.2.1" | ||
if RUBY_VERSION >= "3.4" | ||
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 | ||
else | ||
gem "webrick" | ||
end |
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