Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got a Rails 3.1.3 application running on Heroku, utilizing S3 for asset hosting via asset_sync. Included in my app/assets/css directory is a subdirectory with two files: main.css.scss and categories.css.scss. I have the following line in my production.rb:

config.assets.precompile += [ 'admin/main.css.scss', 'admin/categories.css.scss', 'print.css', 'products.css.scss', 'services.css.scss' ]

When I push to Heroku, all my assets are precompiled and uploaded with the exception of those two files. Do I need to perform some sort of dark magic to include those two files in the process?

share|improve this question
2  
You're supposed to use the name of the compiled asset (ie drop the .scss) but I don't know why that only affects the files in the subdirectory – Frederick Cheung Apr 6 '12 at 6:59
1  
I figured it was something nit-picky like that. Thanks! – nilmethod Apr 6 '12 at 13:49
1  
Please add answer and close question. – Mark Guk Aug 3 '12 at 10:54
Frederick's comment was correct. I'll let him make the answer and I'll accept it. – nilmethod Aug 11 '12 at 18:12

1 Answer

Just type the filenames without scss and it will work fine.

config.assets.precompile += [ 'admin/main.css', 'admin/categories.css', 'print.css', 'products.css', 'services.css' ]
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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