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

version 0.7.7.1 oops fixed critical bug that prevented from working (Object_const_defined? vs Object.const_defined?)

This commit is contained in:
John Mair 2011-04-01 04:41:43 +13:00
parent 9dff02da16
commit 3837b1cf2e
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ require "pry/pry_instance"
begin
# YARD crashes on rbx, so do not require it
if !Object_const_defined?(:RUBY_ENGINE) || RUBY_ENGINE !~ /rbx/
if !Object.const_defined?(:RUBY_ENGINE) || RUBY_ENGINE !~ /rbx/
require "pry-doc"
end
rescue LoadError

View file

@ -1,3 +1,3 @@
class Pry
VERSION = "0.7.7"
VERSION = "0.7.7.1"
end