quick fix for Rails 3.2

This commit is contained in:
Ryan Fitzgerald 2012-01-22 22:33:34 -08:00
parent 8ef2629772
commit ef91d64aff
1 changed files with 5 additions and 0 deletions

View File

@ -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"