From ef91d64affc0a2140150127c385fabd89f1f88a7 Mon Sep 17 00:00:00 2001 From: Ryan Fitzgerald Date: Sun, 22 Jan 2012 22:33:34 -0800 Subject: [PATCH] quick fix for Rails 3.2 --- lib/pry.rb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/pry.rb b/lib/pry.rb index 0a620272..48a7af6b 100644 --- a/lib/pry.rb +++ b/lib/pry.rb @@ -148,6 +148,11 @@ class Pry # indicate an exceptional condition that's fatal to the current command. class CommandError < StandardError; end class NonMethodContextError < CommandError; end + + # This is to keep from breaking under Rails 3.2 for people who are doing that + # IRB = Pry thing. + module ExtendCommandBundle + end end require "method_source"