mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
version 0.9.6 release
This commit is contained in:
parent
d67f16e424
commit
bb4412a11f
2 changed files with 4 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
*/9/2011 version 0.9.6
|
19/9/2011 version 0.9.6
|
||||||
* restored previous behavior of command-line switches (allowing "-rfilename")
|
* restored previous behavior of command-line switches (allowing "-rfilename")
|
||||||
* removed -p option (--play) from edit command
|
* removed -p option (--play) from edit command
|
||||||
* `edit` with no arguments now edits the current or most recent expression
|
* `edit` with no arguments now edits the current or most recent expression
|
||||||
|
@ -16,6 +16,8 @@
|
||||||
* input_stack now implemented - pushing objects onto a pry instance's input_stack causes the instance to read from those objects in turn as it encounters EOF on the previous object. On finishing the input_stack the input object for the pry instance is set back to Pry.config.input, if this fails, pry breaks out of the REPL (throw(:breakout)) with an error message
|
* input_stack now implemented - pushing objects onto a pry instance's input_stack causes the instance to read from those objects in turn as it encounters EOF on the previous object. On finishing the input_stack the input object for the pry instance is set back to Pry.config.input, if this fails, pry breaks out of the REPL (throw(:breakout)) with an error message
|
||||||
* Pry.config.system() defines how pry runs system commands
|
* Pry.config.system() defines how pry runs system commands
|
||||||
* now injecting target_self method into command scope
|
* now injecting target_self method into command scope
|
||||||
|
* play now performs 'show-input' always unless eval_string contains a valid expression (i.e it's about to be eval'd)
|
||||||
|
* play and hist --replay now push the current input object onto the input_stack before redirecting input to a StringIO (works much better with pry-remote now)
|
||||||
|
|
||||||
8/9/2011 version 0.9.5
|
8/9/2011 version 0.9.5
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
class Pry
|
class Pry
|
||||||
VERSION = "0.9.6pre1"
|
VERSION = "0.9.6"
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue