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

version 0.9.9.4pre1, fixed winsize bug

This commit is contained in:
John Mair 2012-04-26 10:00:47 +12:00
parent 1dc68c9de9
commit 8ce247953c
3 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,8 @@
26/4/2012 version 0.9.9.4 major bugfix
* fixed `NoMethodError: undefined method `winsize' for #<IO:<STDOUT>>`, bug #549
* fixes for jruby
* heredoc content no longer auto-indented
19/4/2012 version 0.9.9.3 major doc bugfix 19/4/2012 version 0.9.9.3 major doc bugfix
* show-doc would fail on some core classes, i.e `show-doc Bignum`. This is now fixed * show-doc would fail on some core classes, i.e `show-doc Bignum`. This is now fixed
and show allow a wider range of core documentation to be viewed directly in Pry. and show allow a wider range of core documentation to be viewed directly in Pry.

View file

@ -1,3 +1,3 @@
class Pry class Pry
VERSION = "0.9.9.3" VERSION = "0.9.9.4"
end end

View file

@ -2,11 +2,11 @@
Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = "pry" s.name = "pry"
s.version = "0.9.9.3" s.version = "0.9.9.4pre1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = ["John Mair (banisterfiend)"] s.authors = ["John Mair (banisterfiend)"]
s.date = "2012-04-20" s.date = "2012-04-26"
s.description = "An IRB alternative and runtime developer console" s.description = "An IRB alternative and runtime developer console"
s.email = "jrmair@gmail.com" s.email = "jrmair@gmail.com"
s.executables = ["pry"] s.executables = ["pry"]