When hitting the app without any activity for a while, it throws the following error:

Sass::SyntaxError (File to import not found or unreadable: active_admin/mixins.

If I refresh the page, it loads perfectly without any errors.

Is this a Heroku issue or a real app error? Anyone know of any solutions?

link|improve this question

50% accept rate
feedback

4 Answers

up vote 1 down vote accepted

I would guess that you have a Sass syntax error that the asset pipeline is dealing with during compile. The reason for it only happening after inactivity is that the app is idled down by Heroku and needs to restart to serve a request, hence the asset pipeline 'waking up' again.

link|improve this answer
feedback

You need to remove the gem 'sass-rails', " ~> 3.1.0" from the group set.

link|improve this answer
It's not just about this gem, my guess is that any gem that lists sass-rails as a dependency will contribute to this issue. Putting all these related gems into the assets group should make things work well. I was including the animate-sass gem outside of the assets group, and that gave me the error. – Jaryl Mar 13 at 11:00
How does one remove the gem from the group set? What group set? How does one specify an assets group? – szielenski Apr 17 at 15:39
Do you know the gem file? All you need to remove the gem from group :assets do – Vezu Apr 17 at 18:06
feedback

add a sass_heroku.rb to config/initializers and it should do the trick

heroku = !!ENV['HEROKU_TYPE']
css_dir = heroku ? 'tmp' : 'public'
location = Rails.root + 'app/styles'

unless Sass::Plugin.template_location_array.any? { |pair| pair.first.to_s == location.to_s }
    Sass::Plugin.add_template_location(location, Rails.root + css_dir + 'stylesheets')
end

if heroku
  Sass::Plugin.template_location_array.each do |template_location, css_location|
    css_location.sub!(%r{/public/stylesheets$}, "/#{css_dir}/stylesheets")
  end
  Rails.configuration.middleware.insert_after 'Sass::Plugin::Rack', 'Rack::Static', :urls => ['/stylesheets'], :root => "#{Rails.root}/tmp"
end
link|improve this answer
feedback

I tried Stephane Paul's solution, even though I'm not smart enough to understand it - didn't help.

What solved the problem for me was pre-compiling ahead of time.

Just to clarify, I've only seen this error when trying to use activeadmin on Heroku - worked fine in development.

And the solution was to run rake assets:precompile and make sure to git commit the public/assets directory to heroku, which will then not precomiple the assets itself, hence the error will be skipped.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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