All Versions
71
Latest Version
Avg Release Cycle
126 days
Latest Release
448 days ago
Changelog History
Page 7
Changelog History
Page 7
-
v0.5.7 Changes
- โ Added pry executable, auto-loads .pryrc in user's home directory, if it exists.
-
v0.5.5 Changes
- โ Added Pry.run_command
- More useful error messages
- Easter eggs (game and cohen-poem)
-
v0.5.0 Changes
- ๐ Use clipped version of Pry.view() for large objects
- Exit Pry session on d
- ๐ Use Shellwords for breaking up parameters to pry commands
- 0๏ธโฃ Use OptionParser to parse options for default pry commands
- โ Add version command
- ๐จ Refactor 'status' command: add current method info
- Add meth_name_from_binding utility lambda to commands.rb
- โ Add -M, -m, -v(erbose), -a(ll), -s(uper), -l(ocals), -i(ivars), -k(klass vars), etc options to ls
- โ add -M(instance method) options to show-method and show-doc
- โ add --help option to most commands
- Get rid of ls_method and ls_imethods (subsumed by more powerful ls)
- Get rid of show_idoc and show_imethod
- โ Add special eval-file command that evals target file in current context
-
v0.4.5 Changes
- fixed show_method (though fragile as it references binding_impl directly, making a name change to that method difficult
-
v0.4.4 Changes
- oops, added examples/ directory
-
v0.4.3 Changes
- โ added alias_command and desc methods to Pry::CommandBase
- changed behaviour of ls_methods and ls_imethods to return sorted lists of methods
-
v0.4.1 Changes
- made it so a 'def meth;end' in an object Pry session defines singleton methods, not methods on the class (except in the case of immediates)
- ๐ reorganized documentation, moving customization to a separate wiki file
- storing wiki in a nested git repo, as github wiki pages have their own repo
- โ added more tests for new method definition behaviour
-
v0.4.0 Changes
- โ added command API
- โ added many new commands, i.e ls_methods and friends
- modified other commands
- now accepts greater customization, can modify: input, output, hooks, prompt, print object
- โ added tab completion (even completes commands)
- โ added extensive tests
- โ added examples
- many more changes
-
v0.1.3 Changes
- ๐จ Got rid of rubygems dependency, refactored some code.
-
v0.1.2 Changes
- ๐ now rescuing SyntaxError as well as Racc::Parser error in valid_expression?