Skip to content

Commit

Permalink
Gemfile: add 'webrick' dependency for Ruby 3.0.0 and above
Browse files Browse the repository at this point in the history
Fixes #552
  • Loading branch information
josephmje committed Mar 5, 2021
1 parent 03fb1a0 commit a841a56
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 @@ -8,3 +8,7 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
ruby '>=2.7.1'

gem 'github-pages', group: :jekyll_plugins

if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.0.0')
gem 'webrick', '>= 1.6.1'
end

0 comments on commit a841a56

Please sign in to comment.