Exception: Build::NoApplicableRule
- Inherits:
-
StandardError
- Object
- StandardError
- Build::NoApplicableRule
- Defined in:
- lib/build/rule.rb
Instance Method Summary collapse
-
#initialize(name, arguments) ⇒ NoApplicableRule
constructor
A new instance of NoApplicableRule.
Constructor Details
#initialize(name, arguments) ⇒ NoApplicableRule
Returns a new instance of NoApplicableRule.
246 247 248 249 250 251 |
# File 'lib/build/rule.rb', line 246 def initialize(name, arguments) super "No applicable rule with name #{name}.* for parameters: #{arguments.inspect}" @name = name @arguments = arguments end |