Christian Fazzini
Christian Fazzini

Reputation: 19723

What should one use as a Sprite generator, with Rails?

I've seen Compass' Sprite generator, which is really neat. However, if one was using Twitter Bootstrap, are there any similar solutions for a Sprite generator?

I've seen Lemonade (which is now depracated and in favor of Compass) and css_sprite which hasn't been updated for a while now. Any other options?

Upvotes: 4

Views: 509

Answers (2)

Jesse Wolgamott
Jesse Wolgamott

Reputation: 40277

Why not use one of the Sass port of Twitter Bootstrap, then use compass?

Here's an example I created: http://compass-bootstrap2-rails.heroku.com

gem "compass-rails", ">= 0.12"
gem "bootstrap-sass", ">= 2.0"

Upvotes: 1

Tanzeeb Khalili
Tanzeeb Khalili

Reputation: 7344

You can also try Jammit, which has a ton of other asset packaging features.

Upvotes: 0

Related Questions