У меня есть приложение rails 3.1, которое я пытаюсь протолкнуть к героку.Пока пуш работает, ошибка заключается в том, что он пытается разгрести активы.Получается ошибка
Unexpected token punc, expected punc (line: 11225, col: 7, pos: 321149)
undefined
(in /Users/Matt/Orchive/Orchive/app/assets/javascripts/application.js)
Однако этот файл application.js содержит только некоторые комментарии.Вот оно:
// This is a manifest file that'll be compiled into including all the files listed below.
// Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
// be included in the compiled file accessible from http://example.com/assets/application.js
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
// the compiled file.
//
//= require jquery
//= require jquery_ujs
//= require_tree
Я не очень хорошо понимаю активы, но я попытался запустить rake assets:precompile
в терминале до нажатия и получил эту большую ошибку
/Users/Matt/.rvm/rubies/ruby-1.9.2-p180/bin/ruby /Users/Matt/.rvm/gems/ruby-1.9.2-p180/bin/rake assets:precompile:all RAILS_ENV=production RAILS_GROUPS=assets
rake aborted!
Unexpected token punc, expected punc (line: 11225, col: 7, pos: 321149)
undefined
(in /Users/Matt/Orchive/Orchive/app/assets/javascripts/application.js)
Tasks: TOP => assets:precompile:primary
(See full trace by running task with --trace)
rake aborted!
Command failed with status (1): [/Users/Matt/.rvm/rubies/ruby-1.9.2-p180/bi...]
Tasks: TOP => assets:precompile
(See full trace by running task with --trace)
Я могу отредактироватьи измените это на то, что показывает --trace
, если это будет более полезным.Я думаю, что это обычная, легко исправляемая ошибка, которую я просто не знаю, как это сделать.