Just ran into this problem and don’t want you to too, choo choo 🚂
Rails 6+ currently does not work out of the box with their built in test suite. While tooling around with it working through ‘Agile Web Development with Rails 6’ by Same Ruby, David Bryant Copeland, and Dave Thomas.
Error occured: gems/ruby-3.0.2/gems/bootsnap-1.9.1/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:34:in `require’: cannot load such file — rexml/document (LoadError)
Apparently this is a dependency issue with selenium-webdriver. To fix this add this to your gem file.
gem ‘rexml’, ‘~> 3.2’, ‘>= 3.2.4’
It is hard to find a complete list of column types that you can add to your create_table method. Here is a list of the ones I am familiar with and I hope this helps you out. Add a comment and I can add it to the gist.
Rails…