From 88c3090364aa9a5d30f9ec2392e26c2fa7bdeadf Mon Sep 17 00:00:00 2001 From: loadkpi Date: Fri, 18 May 2018 19:25:26 +0300 Subject: [PATCH] README typo fix --- README.md | 2 +- lib/generators/audit_migration/USAGE | 2 +- sequel-bulk-audit.gemspec | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 666512a..a0735d3 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Or install it yourself as: $ gem install sequel-bulk-audit -After Installation you should run ```rails g audit_install``` generator. +After Installation you should run ```rails g audit_migration``` generator. You can exdend this migration by attaching the trigger to audited tables. diff --git a/lib/generators/audit_migration/USAGE b/lib/generators/audit_migration/USAGE index f62a798..c5a386e 100644 --- a/lib/generators/audit_migration/USAGE +++ b/lib/generators/audit_migration/USAGE @@ -4,7 +4,7 @@ Description: You can attach the trigger to tables here. Example: - rails generate audit_miogration + rails generate audit_migration This will create: what/will/it/create diff --git a/sequel-bulk-audit.gemspec b/sequel-bulk-audit.gemspec index e1b50a9..91b0664 100644 --- a/sequel-bulk-audit.gemspec +++ b/sequel-bulk-audit.gemspec @@ -13,7 +13,7 @@ Gem::Specification.new do |spec| spec.description = %q{Every update on audited table will be logged. You can update the table in bulk} spec.homepage = "https://github.com/fiscal-cliff/sequel-bulk-audit/" spec.post_install_message = %q{ Next steps: - 1. Run rails g audit_install + 1. Run rails g audit_migration 2. Edit generated migration 3. Apply the migration" }