1
0
Fork 0
mirror of https://github.com/pry/pry-rails.git synced 2022-11-09 12:36:03 -05:00

Merge pull request #8 from rwfitzge/master

Rails 3.2 fixes
This commit is contained in:
Robin Wenglewski 2012-01-23 07:09:51 -08:00
commit 8baca018ce

View file

@ -7,7 +7,9 @@ module PryRails
begin
require 'pry'
::IRB = Pry
IRB::ExtendCommandBundle = Pry
unless defined?(IRB::ExtendCommandBundle)
IRB::ExtendCommandBundle = Module.new
end
rescue LoadError
end
end