Class: Rails::Command::SecretsCommand

Inherits:
Base show all
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

#editObject



13
14
15
16
17
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 13

def edit
  Rails.deprecator.warn(<<~MSG.squish)
    `bin/rails secrets:edit` is deprecated in favor of credentials and will be removed in Rails 7.2.
    Run `bin/rails credentials:help` for more information.
  MSG

  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.message
rescue Errno::ENOENT => error
  if error.message.include?("secrets.yml.enc")
    exit 1
  else
    raise
  end
end

#showObject



36
37
38
39
40
41
42
43
# File 'railties/lib/rails/commands/secrets/secrets_command.rb', line 36

def show
  Rails.deprecator.warn(<<~MSG.squish)
    `bin/rails secrets:show` is deprecated in favor of credentials and will be removed in Rails 7.2.
    Run `bin/rails credentials:help` for more information.
  MSG

  say Rails::Secrets.read
end