Re: compass causing file writing error?

2010-11-26 Thread lgs
Compass.configuration.sass_options = { :never_update = true } has been useful to mee too. thanks luca On Nov 17, 2:24 pm, Josh Coffman joshcoff...@gmail.com wrote: That didn't work for me; caused an error about Sass not being found. I did solve it though. Compass has it's own wrapper for sass

Re: compass causing file writing error?

2010-11-26 Thread lgs
Compass.configuration.sass_options = { :never_update = true } has been useful to mee too. thanks luca On Nov 17, 2:24 pm, Josh Coffman joshcoff...@gmail.com wrote: That didn't work for me; caused an error about Sass not being found. I did solve it though. Compass has it's own wrapper for sass

Re: compass causing file writing error?

2010-11-17 Thread Josh Coffman
That didn't work for me; caused an error about Sass not being found. I did solve it though. Compass has it's own wrapper for sass options: Compass.configuration.sass_options = { :never_update = true } On Wed, Nov 17, 2010 at 12:02 AM, Chris Hanks christopher.m.ha...@gmail.com wrote: In my

compass causing file writing error?

2010-11-16 Thread Josh Coffman
I'm using compass in one of my rails apps on heroku, and every time I push it, it fails to load on the first request and shows an error page. It works fine on subsequent requests. I think compass is trying to write to public/stylesheets/ie.css. here is the error from the heroku logs: Started GET

Re: compass causing file writing error?

2010-11-16 Thread Chris Hanks
In my compass initializer file I include: Sass::Plugin.options[:never_update] = true if Rails.env.production? On Nov 16, 9:57 pm, Josh Coffman joshcoff...@gmail.com wrote: I'm using compass in one of my rails apps on heroku, and every time I push it, it fails to load on the first request