bootstrap-ruby / bootstrap_form

Official repository of the bootstrap_form gem, a Rails form builder that makes it super easy to create beautiful-looking forms using Bootstrap 5.
MIT License
1.64k stars 352 forks source link

Fix Rails Edge tests #613

Closed thimo closed 2 years ago

thimo commented 2 years ago

Tests would no longer even start to run because Rails.application.config.assets was not available to set in demo/config/initializers/assets.rb. Adding gem sassc-rails makes the part of config available again.

Next rendering changed for hidden fields ('autocomplete="off"' was added) and rich text area.

Additionally a few Rubocop offences have been removed.

Fixes #609.