spohlenz / tinymce-rails

Integration of TinyMCE with the Rails asset pipeline
Other
814 stars 257 forks source link

capistrano deploy, assets precompile error #121

Closed richardrails closed 10 years ago

richardrails commented 10 years ago

in my cap deploy:

executing "cd /var/www/rfcms_production/releases/20130919084148 && bundle exec rake RAILS_ENV=production RAILS_GROUPS=assets assets:precompile"
    servers: ["88.86.x.x"]
    [88.86.x.x] executing command
 ** [out :: 88.86.x.x] rake aborted!
 ** [out :: 88.86.x.x] No such file or directory - /var/www/rfcms_production/releases/20130919084148/public/assets/tinymce/langs/readme-f4ae2b6b7f65b7f80cc94013c24ed9fe.md

it looks like it is trying to compile .md file. Why?

I use branch tinymce-4, Rails 3.2

arambert commented 10 years ago

I get the same error, how did you resolve it ?

marcosgugs commented 10 years ago

I get the same error, how did you resolve it ?

spohlenz commented 10 years ago

What is your config.assets.precompile set to?

arambert commented 10 years ago

In my app it's :

config.assets.precompile += %w(admin.css admin.js front.css front.js admin/print.css)
arambert commented 10 years ago

I've managed to get rid of that by updating rails to 3.2.17 + updating turbo-sprockets-rails3 to 0.3.11 (yes i was using this gem)

jefigo commented 10 years ago

:+1: