Class: Rails::Command::CredentialsCommand
- Includes:
- Helpers::Editor
- Defined in:
- lib/rails/commands/credentials/credentials_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 ⇒ Object
19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/rails/commands/credentials/credentials_command.rb', line 19 def edit require_application! ensure_editor_available(command: "bin/rails credentials:edit") || (return) ensure_master_key_has_been_added if Rails.application.credentials.key.nil? ensure_credentials_have_been_added catch_editing_exceptions do change_credentials_in_system_editor end say "New credentials encrypted and saved." end |
#show ⇒ Object
33 34 35 36 37 |
# File 'lib/rails/commands/credentials/credentials_command.rb', line 33 def show require_application! say Rails.application.credentials.read.presence || end |