Exception: ViewComponent::UncountableSlotNameError

Inherits:
InvalidSlotNameError show all
Defined in:
lib/view_component/errors.rb

Constant Summary collapse

MESSAGE =
"COMPONENT declares a slot named SLOT_NAME, which is an uncountable word\n\n" \
"To fix this issue, choose a different name."

Instance Method Summary collapse

Constructor Details

#initialize(klass_name, slot_name) ⇒ UncountableSlotNameError

Returns a new instance of UncountableSlotNameError.



157
158
159
# File 'lib/view_component/errors.rb', line 157

def initialize(klass_name, slot_name)
  super(MESSAGE.gsub("COMPONENT", klass_name.to_s).gsub("SLOT_NAME", slot_name.to_s))
end