Did somebody knows how to solve scaffold problem by the choice gem 'rails', '5.2.0' and 'bootstrap', '4.3.1', probably originated due to impossibility to make a scaffold.scss file.
My knowledge in Rails is too poor to understand explanation in the end of the execution of the:
rails generate scaffold Something first second
In the end the scaffolding is broken with explanation:
1. With bootsnap
...
invoke scss
create app/assets/stylesheets/somethings.scss
/usr/local/rvm/gems/ruby-2.4.3/gems/bootsnap-1.4.0/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:21:in `require': cannot load such file -- sass/css (LoadError)
from /usr/local/rvm/gems/ruby-2.4.3/gems/bootsnap-1.4.0/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:21:in `block in require_with_bootsnap_lfi'
from /usr/local/rvm/gems/ruby-2.4.3/gems/bootsnap-1.4.0/lib/bootsnap/load_path_cache/loaded_features_index.rb:80:in `register'
...
2. Without bootsnap
...
invoke scss
create app/assets/stylesheets/somethings.scss
/usr/local/rvm/gems/ruby-2.4.3/gems/activesupport-5.2.2/lib/active_support/dependencies.rb:291:in `require': cannot load such file -- sass/css (LoadError)
from /usr/local/rvm/gems/ruby-2.4.3/gems/activesupport-5.2.2/lib/active_support/dependencies.rb:291:in `block in require'
from /usr/local/rvm/gems/ruby-2.4.3/gems/activesupport-5.2.2/lib/active_support/dependencies.rb:257:in `load_dependency'
...