From 7df0656a98f22920733d9c983a25a7ba3ed64711 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Morisset?= Date: Sun, 31 Mar 2024 16:25:02 -0400 Subject: [PATCH] Update README.md --- README.md | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/README.md b/README.md index 7713eed..5f6be98 100644 --- a/README.md +++ b/README.md @@ -4,27 +4,6 @@ Autocorrects typos in your Pry console. This small Pry plugin captures exceptions that may arise from typos and deduces the correct command based on your database information and session history. -#### Before - -```ruby -[1] pry(main)> result = 1 -=> 1 -[2] pry(main)> resilt -NameError: undefined local variable or method `resilt' for main:Object -from (pry):2:in `__pry__' -``` - -#### After - -```ruby -[1] pry(main)> result = 1 -=> 1 -[2] pry(main)> resilt -E, [2024-01-31T17:11:16.344161 #3739] ERROR -- : undefined local variable or method `resilt' for main:Object -I, [2024-01-31T17:11:16.344503 #3739] INFO -- : Running: result -=> 1 -``` - > [!NOTE] > Currently, this plugin is not truly ORM-agnostic; to fully benefit from it, ActiveRecord is required.