From 8351b9a20d85ee35da549214eec88e761546da12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mon=20ou=C3=AFe?= Date: Fri, 29 Apr 2011 17:47:33 +0200 Subject: [PATCH] Fixed bin/pry (Pry::Commands is not a class anymore) --- bin/pry | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/pry b/bin/pry index 13574423..91a8e77d 100644 --- a/bin/pry +++ b/bin/pry @@ -48,7 +48,7 @@ end # invoked via cli Pry.cli = true -class Pry::Commands +Pry::Commands.instance_eval do command "reset", "Reset the REPL to a clean state." do output.puts "Pry reset." exec("pry")