我在 heroku 上的延迟工作中看到了这个错误,这对我来说毫无意义:
{uninitialized constant Less::Engine
(in /app/app/assets/stylesheets/share_and_earn_recommendation_email.css.less)
/app/vendor/bundle/ruby/1.9.1/gems/tilt-1.3.3/lib/tilt/css.rb:60:in `prepare'
...
为什么没有意义?因为css.rb
看起来像这样:
def prepare
if ::Less.const_defined? :Engine
@engine = ::Less::Engine.new(data) # line 60
else
...
Less::Engine
这意味着如果未定义,则不可能到达第 60 行。我错过了什么?
编辑
来自 heroku 控制台的更好的演示:
irb(main):008:0> ::Less.const_defined? :Engine
=> true
irb(main):009:0> ::Less::Engine
NameError: uninitialized constant Less::Engine
编辑 2
它变得更有趣:
irb(main):011:0> ::Less.const_defined? :Engine, false
=> false
不同的是后者不搜索祖先。但是没有祖先,所以它不应该有所作为:
irb(main):012:0> ::Less.ancestors
=> [Less]