method

edit

Importance_0
v6.1.7.7 - Show latest stable - 0 notes - Class: EncryptedCommand
edit(file_path) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File railties/lib/rails/commands/encrypted/encrypted_command.rb, line 23 def edit(file_path) require_application! encrypted = Rails.application.encrypted(file_path, key_path: options[:key]) ensure_editor_available(command: "bin/rails encrypted:edit") || (return) ensure_encryption_key_has_been_added(options[:key]) if encrypted.key.nil? ensure_encrypted_file_has_been_added(file_path, options[:key]) catch_editing_exceptions do change_encrypted_file_in_system_editor(file_path, options[:key]) end say "File encrypted and saved." rescue ActiveSupport::MessageEncryptor::InvalidMessage say "Couldn't decrypt #{file_path}. Perhaps you passed the wrong key?" end
Register or log in to add new notes.