Class: Rails::Command::SecretsCommand
- Includes:
- Helpers::Editor
- Defined in:
- railties/lib/rails/commands/secrets/secrets_command.rb
Overview
:nodoc:
Instance Method Summary collapse
Methods inherited from Base
banner, base_name, class_usage, 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
#boot_application!, #load_environment_config!, #load_generators, #load_tasks, #require_application!, #set_application_directory!
Instance Method Details
#edit ⇒ Object
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# File 'railties/lib/rails/commands/secrets/secrets_command.rb', line 18 def edit boot_application! using_system_editor do Rails::Secrets.read_for_editing { |tmp_path| system_editor(tmp_path) } say "File encrypted and saved." end rescue Rails::Secrets::MissingKeyError => error say error. rescue Errno::ENOENT => error if error..include?("secrets.yml.enc") deprecate_in_favor_of_credentials_and_exit else raise end end |
#setup ⇒ Object
13 14 15 |
# File 'railties/lib/rails/commands/secrets/secrets_command.rb', line 13 def setup deprecate_in_favor_of_credentials_and_exit end |