Closed gucki closed 13 years ago
What version of Rails are you using? Also, what is your config.assets.precompile
set to?
3.1.1.rc1. config.assets.precompile
is not changed.
Thanks @gucki. I've tracked this down to the use of Procs within config.assets.precompile
in rc1, which isn't supported by the digestion gem. Should be an easy fix.
Please give tinymce-rails (3.4.5.0.1) a go. It should now work on Rails 3.1.1.rc1 but won't yet work on edge rails.
Thanks for the quick response. Meanwhile I did some work myself and went another route: https://github.com/spohlenz/tinymce-rails/pull/17 :)
When having tinymce-rails in the Gemfile only
application.js
andapplication.css
get precompiled byrake assets:precompile
. All other assets like images don't get precompiled anymore.Removing
tinymce-rails
from the Gemfile makes everything work as it should.