What changes do you need to make to a Rails project to configure blueprintcss as the default stylesheet to be used when you generate scaffolding instead of scaffold.css?
|
|
|
|
|
|
|
I'd recommend writing your own generator, but if you want to alter the default you can: 1 - For a single app: Freeze rails and change the stylesheet the scaffold generator uses. railsapp/vendor/rails/railties/lib/rails_generators/generators/components/scaffold/templates/style.css 2 - For all apps: Change the same style.css file in your systems rails installation. |
||
|
|
|
|
Substitute your own scaffolding generation code. Instructions are here (with the caveat that they may be out of date). An easier alternative may be to write a Rake action to do textual substitution in the (normally) generated source. |
|||
|
|
