if spell_ok $SPELL; then
  message "${PROBLEM_COLOR}" &&
  message "Ruby ${VERSION%.*} has been deprecated, it is no longer supported and no security" &&
  message "fixes will be release anymore. Please switch to a more recent version of" &&
  message "ruby. Proceding with this cast will remove spell $SPELL." &&
  message "${DEFAULT_COLOR}" &&
  if ! query "Do you wish to proceed with removing $SPELL now?" n; then
    return 1
  fi
else
  message "${PROBLEM_COLOR}" &&
  message "Ruby ${VERSION%.*} has been deprecated, it is no longer supported and no security" &&
  message "fixes will be release anymore. Please select a more recent version of" &&
  message "ruby. $SPELL will not be cast." &&
  message "${DEFAULT_COLOR}" &&
  query_string X "Press enter to continue" "" &&
  return 1
fi
