class Rails::Command::EncryptedCommand

def missing_encrypted_configuration_message

def missing_encrypted_configuration_message
  if !encrypted_configuration.key?
    "Missing '#{key_path}' to decrypt data. See `#{executable(:help)}`"
  else
    "File '#{content_path}' does not exist. Use `#{executable(:edit)} #{content_path}` to change that."
  end
end