class ChefCore::Text::TextWrapper::MissingPlural

Public Class Methods

new(path, terminus) click to toggle source
Calls superclass method
# File lib/chef_core/text/text_wrapper.rb, line 78
def initialize(path, terminus)
  set_call_context
  message = "i18n key #{path}.#{terminus} appears to reference a pluralization.\n"
  message << "  Please append the plural indicator '!!pl' to the end of #{path}.\n"
  message << "  Referenced from #{line}"
  super(message)
end