Предварительная компиляция RoR завершается ошибкой, а ресурсы rake:precompile - в основном на пустом application.js
Бег:
bundle exec rake assets:precompile RAILS_ENV=production --trace
** Execute assets:precompile:primary
rake aborted!
TypeError: Object doesn't support this property or method
(in C:/Sites/MyApp/app/assets/javascripts/application.js)
Вот весь контент application.js
:
//= require jquery
//= require jquery_ujs
//= require_tree .
больше ничего нет
Я пытался удалить три //= require
линии от application.js
Затем прекомпиляция запускается без проблем.
2 ответа
Решение
Похоже, что это может быть проблема с uglifier и Windows Script Host:
https://github.com/rails/rails/issues/2847
Убедитесь, что вы используете последнюю версию uglifier (1.0.4). Если у вас все еще есть проблемы, я бы предложил попробовать другой компилятор (например, компилятор Closure)
В Gemfile
:
gem 'closure-compiler'
В config/environments/production.rb
config.assets.js_compressor = :closure
альтернативно отключить сжатие JS вообще:
config.assets.compress = false
Я получил такую же ошибку
...>rake assets:precompile
C:/Ruby192/bin/ruby.exe C:/Ruby192/bin/rake assets:precompile:all RAILS_ENV=production RAILS_GROUPS=assets
...
rake aborted!
TypeError: Object doesn't support this property or method
(in C:/Users/straffordw/railsApps/chorus-spp/app/assets/javascripts/application.js)
C:/Ruby192/lib/ruby/gems/1.9.1/gems/execjs-1.4.0/lib/execjs/external_runtime.rb:68:in `extract_result'
C:/Ruby192/lib/ruby/gems/1.9.1/gems/execjs-1.4.0/lib/execjs/external_runtime.rb:28:in `block in exec'
C:/Ruby192/lib/ruby/gems/1.9.1/gems/execjs-1.4.0/lib/execjs/external_runtime.rb:41:in `compile_to_tempfile'
C:/Ruby192/lib/ruby/gems/1.9.1/gems/execjs-1.4.0/lib/execjs/external_runtime.rb:27:in `exec'
C:/Ruby192/lib/ruby/gems/1.9.1/gems/uglifier-2.0.1/lib/uglifier.rb:167:in `really_compile'
C:/Ruby192/lib/ruby/gems/1.9.1/gems/uglifier-2.0.1/lib/uglifier.rb:95:in `compile'
C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/sprockets/compressors.rb:74:in `compress'
C:/Ruby192/lib/ruby/gems/1.9.1/gems/sprockets-2.2.2/lib/sprockets/processing.rb:265:in `block in js_compressor='
...
и сделал
bundle update
который принес
uglifier (2.1.1)
(среди прочего), затем:
rake assets:precompile
и это решило мою проблему. Windows, Rails 3.2.11.