rtacconi
rtacconi

Reputation: 14769

Add Blueprint to a Rails 3 project using compass gem

I have a new Rails 3 project. I have installed Compass. I would like to generate the stylesheets in app/stylesheets using the Blueprint framework.

Upvotes: 0

Views: 1308

Answers (1)

Dylan Markow
Dylan Markow

Reputation: 124419

compass init rails /path/to/myrailsproject --using blueprint/semantic

Accept the defaults when prompted; your Sass files will be put in app/stylesheets and the compiled css will be put in public/stylesheets/compiled.

Upvotes: 2

Related Questions