ruby-on-rails – 在预编译资源上获取此错误:TypeError:无法消化ActiveSupport :: StringInquirer

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 在预编译资源上获取此错误:TypeError:无法消化ActiveSupport :: StringInquirer前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是一个相对较新的Rails程序员,当我尝试预编译资源(甚至有时运行服务器)时,我得到这个错误
TypeError: couldn't digest ActiveSupport::StringInquirer

    /Users/Lucia/jruby/lib/ruby/gems/shared/gems/sprockets-3.5.2/lib/sprockets/digest_utils.rb:83:in `digest'
    /Users/Lucia/jruby/lib/ruby/gems/shared/gems/sprockets-3.5.2/lib/sprockets/loader.rb:55:in `block in load'
    /Users/Lucia/jruby/lib/ruby/gems/shared/gems/sprockets-3.5.2/lib/sprockets/loader.rb:312:in `block in fetch_asset_from_dependency_cache'
    org/jruby/RubyArray.java:1560:in `each'
    org/jruby/RubyEnumerable.java:1016:in `each_with_index'
   /Users/Lucia/jruby/lib/ruby/gems/shared/gems/sprockets-3.5.2/lib/sprockets/loader.rb:308:in `fetch_asset_from_dependency_cache'
   /Users/Lucia/jruby/lib/ruby/gems/shared/gems/sprockets-3.5.2/lib/sprockets/loader.rb:44:in `load'

我已经尝试关闭开发中的消化,并尝试使用指定开发的RAILS_ENV标志运行耙子任务,但没有结果.

我已经尝试在google上看这个问题,似乎找不到任何相关的东西.

我正在运行jRuby 9.0.5.0和rails 4.2.5.2.

解决方法

尝试启动这些命令:
RAILS_ENV=test bundle exec rake assets:clean
RAILS_ENV=test bundle exec rake tmp:cache:clear
RAILS_ENV=test bundle exec rake assets:precompile
原文链接:https://www.f2er.com/ruby/273421.html

猜你在找的Ruby相关文章