vote up 3 vote down star

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?

flag

2 Answers

vote up 3 vote down check

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.

link|flag
vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.