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

Investigate Rails 7 Tests/Config Needing `sassc` #614

Closed lcreid closed 2 years ago

lcreid commented 2 years ago

We had to add sassc to the test group in the Gemfile, in order to get tests to run in Rails 7. We're not sure why. It would be nice to understand what the change was that caused this.

donv commented 2 years ago

Sprockets is no longer part of Rails 7 by default, so any config for assets will give error. Removing both sassc-rails and demo/config/initializers/assets.rb solves the test error.