Local builds fail using Ruby 3, since the webrick gem is apparently no longer bundled by default. Additionally, the local build instructions provided by this repository aren't very detailed.
This pull request does two things:
Adds webrick to the Gemfile so it's specifically installed if not already bundled, which effectively adds Ruby 3 support
Updates the build instructions to be more complete
These changes have been tested on both Ruby 3.0.2 and Ruby 2.7.6 successfully. They have not been specifically tested on the GitHub Actions deployment process.
Local builds fail using Ruby 3, since the
webrick
gem is apparently no longer bundled by default. Additionally, the local build instructions provided by this repository aren't very detailed.This pull request does two things:
webrick
to theGemfile
so it's specifically installed if not already bundled, which effectively adds Ruby 3 supportThese changes have been tested on both Ruby 3.0.2 and Ruby 2.7.6 successfully. They have not been specifically tested on the GitHub Actions deployment process.
Fixes issue 304.