method
missing_encrypted_configuration_message
rails latest stable - Class:
Rails::Command::EncryptedCommand
missing_encrypted_configuration_message()private
No documentation available.
# File railties/lib/rails/commands/encrypted/encrypted_command.rb, line 89
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