method
missing_credentials!
v8.1.1 -
Show latest stable
- Class:
Rails::Command::CredentialsCommand
missing_credentials!()private
No documentation available.
# File railties/lib/rails/commands/credentials/credentials_command.rb, line 137
def missing_credentials!
if !credentials.key?
say_error "Missing '#{key_path}' to decrypt credentials. See `#{executable(:help)}`."
else
say_error "File '#{content_path}' does not exist. Use `#{executable(:edit)}` to change that."
end
exit 1
end