I had an app based on Rails 3.0. This is a prediction app and I need different CSS rule sets on different spreads, because I use same selectors with different rules.
Previously in rails 3.0 I had a nice solution.
I had a column in my database at my spreads with the name of the CSS file (without extension).
I picked up this data like this:
@spread = Spread.find_by_id(params[:spread_id]) @css_to_use = @spread.css_to_use
Put a conditional line in my application.html.erb:
<%= stylesheet_link_tag @css_to_use unless @css_to_use.blank? %>
This worked well, untill now. I'm working this app out for Rails 3.2 and because of the asset pipeline, this magic is gone.
I found this: Using Rails 3.1 assets pipeline to conditionally use certain css, but this is a bit sluggish solution (and now exactly what I want).
Is out there a nice work around for this problem? Do you know a solution that makes not only to load specified files but with a dependency?