class Nanoc::Int::Errors::NoMatchingCompilationRuleFound
Error that is raised when no compilation rule that can be applied to the current item can be found.
Public Class Methods
new(item)
click to toggle source
@param [Nanoc::Int::Item] item The item for which no compilation rule
could be found
Calls superclass method
# File lib/nanoc/base/errors.rb, line 78 def initialize(item) super("No compilation rules were found for the “#{item.identifier}” item.") end