class Rails::Command::EncryptedCommand

def show(file_path)

def show(file_path)
  require_application!
  encrypted = Rails.application.encrypted(file_path, key_path: options[:key])
  say encrypted.read.presence || missing_encrypted_message(key: encrypted.key, key_path: options[:key], file_path: file_path)
end