From 1df19aa4a2957c62acd3cb9b175317cecfa4c8e1 Mon Sep 17 00:00:00 2001 From: Zeke Gabrielse Date: Wed, 14 Aug 2024 12:36:45 -0500 Subject: [PATCH] update desc --- README.md | 6 +++--- verbose_migrations.gemspec | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 47c7df4..13ce58c 100644 --- a/README.md +++ b/README.md @@ -3,9 +3,9 @@ [![CI](https://github.com/keygen-sh/verbose_migrations/actions/workflows/test.yml/badge.svg)](https://github.com/keygen-sh/verbose_migrations/actions) [![Gem Version](https://badge.fury.io/rb/verbose_migrations.svg)](https://badge.fury.io/rb/verbose_migrations) -Override Active Record logger to `DEBUG` mode during Active Record migrations -to easily follow along and spot blocking queries in a migration, even when the -logger is set to e.g. `WARN`. +Enable verbose logging for Active Record migrations, regardless of configured +log level. Monitor query speed, query execution, and overall progress when +executing long running or otherwise risky migrations. This gem was extracted from [Keygen](https://keygen.sh). diff --git a/verbose_migrations.gemspec b/verbose_migrations.gemspec index 82d97ae..fdf5790 100644 --- a/verbose_migrations.gemspec +++ b/verbose_migrations.gemspec @@ -7,8 +7,8 @@ Gem::Specification.new do |spec| spec.version = VerboseMigrations::VERSION spec.authors = ['Zeke Gabrielse'] spec.email = ['oss@keygen.sh'] - spec.summary = 'Set Active Record logger to DEBUG mode during Active Record migrations.' - spec.description = 'Override Active Record logger to DEBUG mode during Active Record migrations to easily follow along and spot blocking queries in a migration.' + spec.summary = 'Enable verbose logging for Active Record migrations, regardless of configured log level, to monitor query speed and execution.' + spec.description = 'Enable verbose logging for Active Record migrations, regardless of configured log level. Monitor query speed, query execution, and overall progress when executing long running or otherwise risky migrations.' spec.homepage = 'https://github.com/keygen-sh/verbose_migrations' spec.license = 'MIT'