class Rails::Application::Configuration

def default_credentials_content_path

def default_credentials_content_path
  if credentials_available_for_current_env?
    root.join("config", "credentials", "#{Rails.env}.yml.enc")
  else
    root.join("config", "credentials.yml.enc")
  end
end