method

edit

Importance_0
v7.1.3.4 - Show latest stable - 0 notes - Class: CredentialsCommand
edit() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File railties/lib/rails/commands/credentials/credentials_command.rb, line 18
      def edit
        load_environment_config!
        load_generators

        if environment_specified?
          @content_path = "config/credentials/#{environment}.yml.enc" unless config.key?(:content_path)
          @key_path = "config/credentials/#{environment}.key" unless config.key?(:key_path)
        end

        ensure_encryption_key_has_been_added
        ensure_credentials_have_been_added
        ensure_diffing_driver_is_configured

        change_credentials_in_system_editor
      end
Register or log in to add new notes.