LoginSignup
1
0

More than 1 year has passed since last update.

cannot load such file -- rexml/documentと出た時の対処法!

Last updated at Posted at 2021-09-16

環境

macOS Big Sur 11.5.2
rails 6.1.4
railsチュートリアル6章学習中

実行

$ rails test:models

エラー

rails aborted!
LoadError: cannot load such file -- rexml/document

解決法

Gemfileに

Gemfile
gem 'rexml'

を追加し

$ bundle install

再度

$ rails test:models

Run options: --seed 62060

# Running:

.

Finished in 0.316916s, 3.1554 runs/s, 3.1554 assertions/s.
1 runs, 1 assertions, 0 failures, 0 errors, 0 skips

できました!

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0