I have just tried to deploy my Rails 3 application which uses ActiveAdmin and I’ve gotten the following error:
File to import not found or unreadable: active_admin/mixins
The solution was to add the following line into my capistrano configuration file config/deploy.rb:
load "deploy/assets"
After a new
cap deploy
the error was gone.
The post Error when trying to deploy Rails 3 application with ActiveAdmin appeared first on Happy Coding Journal.