Class: Rails::Command::SecretsCommand
- Includes:
- Helpers::Editor
- Defined in:
- 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
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/rails/commands/secrets/secrets_command.rb', line 14 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. rescue Errno::ENOENT => error if error..include?("secrets.yml.enc") exit 1 else raise end end |
#show ⇒ Object
37 38 39 40 41 42 43 44 |
# File 'lib/rails/commands/secrets/secrets_command.rb', line 37 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 |