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:
parent
9dff02da16
commit
3837b1cf2e
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
class Pry
|
||||
VERSION = "0.7.7"
|
||||
VERSION = "0.7.7.1"
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue