Class: Rails::Command::EncryptedCommand
- Includes:
- Helpers::Editor
- Defined in:
- lib/rails/commands/encrypted/encrypted_command.rb
Overview
:nodoc:
Instance Method Summary collapse
Methods inherited from Base
banner, base_name, command_name, default_command_root, desc, engine?, executable, exit_on_failure?, #help, hide_command!, inherited, namespace, perform, printing_commands, usage_path
Methods included from Actions
#load_generators, #load_tasks, #require_application!, #require_application_and_environment!, #require_environment!, #set_application_directory!
Instance Method Details
#edit(file_path) ⇒ Object
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
# File 'lib/rails/commands/encrypted/encrypted_command.rb', line 23 def edit(file_path) require_application! encrypted = Rails.application.encrypted(file_path, key_path: [:key]) ensure_editor_available(command: "bin/rails encrypted:edit") || (return) ensure_encryption_key_has_been_added([:key]) if encrypted.key.nil? ensure_encrypted_file_has_been_added(file_path, [:key]) catch_editing_exceptions do change_encrypted_file_in_system_editor(file_path, [:key]) end say "File encrypted and saved." rescue ActiveSupport::MessageEncryptor::InvalidMessage say "Couldn't decrypt #{file_path}. Perhaps you passed the wrong key?" end |
#show(file_path) ⇒ Object
40 41 42 43 44 45 |
# File 'lib/rails/commands/encrypted/encrypted_command.rb', line 40 def show(file_path) require_application! encrypted = Rails.application.encrypted(file_path, key_path: [:key]) say encrypted.read.presence || (key: encrypted.key, key_path: [:key], file_path: file_path) end |