Closed andyw8 closed 2 years ago
What was your create command?
rails new myapp -d postgresql -m https://raw.githubusercontent.com/excid3/jumpstart/master/template.rb --skip-javascript
(from the README
).
Could it be because Rails now includes css-bundling
by default, but it's also added by https://github.com/excid3/jumpstart/pull/153 ?
Hmm, Rails shouldn't be including css-bundling
by default. It should just use the asset pipeline.
Sorry, my mistake, I had --css bootstrap
within my ~/.railsrc
from some previous work.
You won't be the only one that adds --css
, so maybe we adjust and grep the Gemfile for cssbundling-rails
before adding the gem?
Yeah, that seems sensible. I'll take a look at adding a check for that.
Sounds good, let me know if you have any questions. 👍
When creating a new app with Rails 7.0.1, the following warning is emitted:
I checked the
Gemfile
andcssbundling-rails
is indeed listed twice.