pry 0.7.7-i386-mingw32 → 0.7.7.1-i386-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. data/lib/pry/commands.rb +1 -1
  2. data/lib/pry/version.rb +1 -1
  3. metadata +2 -1
data/lib/pry/commands.rb CHANGED
@@ -6,7 +6,7 @@ require "pry/pry_instance"
6
6
  begin
7
7
 
8
8
  # YARD crashes on rbx, so do not require it
9
- if !Object_const_defined?(:RUBY_ENGINE) || RUBY_ENGINE !~ /rbx/
9
+ if !Object.const_defined?(:RUBY_ENGINE) || RUBY_ENGINE !~ /rbx/
10
10
  require "pry-doc"
11
11
  end
12
12
  rescue LoadError
data/lib/pry/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class Pry
2
- VERSION = "0.7.7"
2
+ VERSION = "0.7.7.1"
3
3
  end
metadata CHANGED
@@ -6,7 +6,8 @@ version: !ruby/object:Gem::Version
6
6
  - 0
7
7
  - 7
8
8
  - 7
9
- version: 0.7.7
9
+ - 1
10
+ version: 0.7.7.1
10
11
  platform: i386-mingw32
11
12
  authors:
12
13
  - John Mair (banisterfiend)