less / more

less on rails — the official LESS plugin for Ruby on Rails
http://lesscss.org
MIT License
226 stars 41 forks source link

Problems with running more on Heroku #28

Closed ravicious closed 14 years ago

ravicious commented 14 years ago

Hi,

I've just tried to run more on Heroku, but it can't generate css files (because of Heroku's readonly filesystem). I think that the 79905482bf7db11ed4a391f0b173d19214014118 commit broke everything. Should I use an older version of more?

grosser commented 14 years ago

just check in the css and your good to go. Additionally you can add skip_before_filter :generate_css_from_less if Rails.env.product? to stop any kind of css generation.

ravicious commented 14 years ago

Yeah, I've forgotten that my .gitignore contains the following line:

public/stylesheets/application.css

Thanks for the tip.