I created a brand new Rails 3.1 app. I added the twitter bootstrap CSS file in app/assets/stylesheets/bootstrap.min.css. Here is the relevant code

app/assets/stylesheets/application.css (includes the tree, so bootstrap is included)

/*
 * This is a manifest file that'll automatically include all the stylesheets available in this directory
 * and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
 * the top of the compiled file, but it's generally better to create a new file per style scope.
 *= require_self
 *= require_tree . 
*/

Gemfile (includes execjs and therubyracer for compile/compress)

group :development, :qa do
  gem 'execjs'
  gem 'therubyracer'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
  gem 'sass-rails',   '~> 3.1.0'
  gem 'coffee-rails', '~> 3.1.0'
  gem 'uglifier', '>= 1.0.3'
end

Then I run the rake task to precompile assets

rake assets:precompile

this fails with the following error

Invalid CSS after ".inputs-list li+": expected number or function, was "li"

that CSS is in the bootstrap file (".inputs-list li+li" is the selector).

However, if I run

rake assets:precompile RAILS_ENV=development

now it works fine. Turns out that if I change config/environments/production.rb to not compress files:

config.assets.compress = false

then the original command works too (without specifying development environment).

So, how do I track down the error? I can live with just turning off compression for now, but obviously something is wrong. Is it Rails? Sprockets? The Ruby Racer? Uglifier?

link|improve this question

80% accept rate
feedback

2 Answers

up vote 2 down vote accepted

I fixed this using the non-minified version of Bootstrap. It'll still get compiled when running rake assets:precompile so it's not an issue :)

link|improve this answer
I thought I tried the non-minified version as well - and it still wasn't working. I'll accept your answer, in case I really did forget to try this. In any case, I tried again today on a rails 3.1.1 app, and it worked fine. With both the minified and non-minified verions. – davekaro Oct 18 '11 at 19:02
Good to know that in Rails 3.1.1 it works fine :) – Ian Oct 21 '11 at 1:37
feedback

I recommend using one of the libraries that converts bootstrap to sass and incorporates it into the asset pipeline. This way you'll get the JS incorporated, you can change the variables that bootstrap uses in a preboot.scss file, and you can pick and choose which features to incorporate. You'll also be able to upgrade using bundler.

I use bootstrap-sass and it works great: https://github.com/thomas-mcdonald/bootstrap-sass

link|improve this answer
I did consider this... but that just adds more complexity I didn't want at the time. I just wanted to drop the CSS file in and be done. – davekaro Oct 18 '11 at 19:01
I approve of this method. – Thomas McDonald Nov 6 '11 at 22:51
feedback

Your Answer

 
or
required, but never shown

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