cannot load such file — webrick/httputils
Try: bundle add webrick Adding gem “webrick” to Gemfile solves the problem.
Try: bundle add webrick Adding gem “webrick” to Gemfile solves the problem.
If you have not updated rvm do that first RVM Upgrading rvm get stable # or rvm get master # for even newer versions not in stable 3.0.0 in this case To see all available rubies run rvm list remote all # or rvm list known # as pointed out in the comments you should … Read more
rexml gem is a bundled gem since Ruby 3.0.0. So you must add rexml to Gemfile. On Ruby 2.6 and 2.7, rexml gem is default gem. So default rexml is used if Gemfile does not include rexml. On these versions of ruby, you must add rexml to Gemfile only if you want to use specific … Read more