Pryx

Three Virtues of a Programmer: Laziness, Impatience, and Hubris. -- Larry Wall, the author of Perl Programming language.
Getting Started
Don't add this gem into bundler's Gemfile.
Instead, install it directly via RubyGems
$ gem install pryx
Usage
Before use it, you need set RUBYOPT variable.
You can do this two way in a terminal.
$: export RUBYOPT+=' -rpryx'
$: ruby your_file.rb # add pry! in your_file for start pry session
or Run your's code directly use:
$: RUBYOPT+='-rpryx' ruby your_file.rb # add pry! in your_file for start pry session
Then, try add pry! into your's ruby code, then run it, have fun!
useful command add directly to Kernel
pry!
start a pry session, this session only can be intercept once if add into a loop. when used with a rails/roda web server, it only intercept one per request.
we have IRB equivalent, named irb!, for use more nice feature, use following code instead:
$: RUBYOPT+='-rpryx_irb' ruby your_file.rb # add irb! in your_file for start pry session
Following feature both available when start a Pry or IRB session:
- add
next/step/up/downcommand for debug, use break - add
Kernel#ls1(use ls1 to avoid conflict with pry builtin ls command), see looksee - Use AwesomePrint for printer. see [https://github.com/awesome-print/awesome_print]
Following feature only available when start a Pry session:
- add
$/?command for see source, see pry-doc - pry-remote debug support. you still use
pry!no changes, it will usepry-remoteautomatically if current ruby process was running on backround, then, it will use pry-remote, and listen on 0.0.0.0:9876, Then, you can connect to it from another terminal! see pry-remote - add
pacommand, see pry-power_assert - add
hiercommand for print the class hierarchies, see pry-hier - add
pry-aa_ancestorscommand for print the class hierarchy, see pry-aa_ancestors - add
up/down/frame/stackcommand, see pry-stack_explorer - add
yesorycommand, see pry-yes
pry1 pry2 (sorry for this bad name, please create a issue you have a better one)
pry2 do nothing, but it will be interceptd and start a pry session only after pry1 is running.
I haven use this hack for avoid pry session start on working place.
You know what i means.
irb1 irb2
IRB equivalent for pry1, pry2 we have irb1 and irb2 too.
pry3
It just normal binding.pry, that is, will always be intercept if code can reach.
but above plugins and libraries all correct configured.
we have another Kernel#pry?, which enable pry-state automatically, see pry-state
we have two binary, pryx, irbx
pryx is same as pry, but, with plugins and libraries correct configured.
irbx is same for irb.
Philosophy
This gem is design to maximum limit take effect current ruby program, so, it should be safe to use it. But, you should only use it when development, though, it was tested when use in docker-compose container too.
Support
- MRI 2.2+
History
See CHANGELOG for details.
Contributing
- Bug reports
- Source
Patches:
- Fork on Github.
- Run
gem install --dev pryxorbundle install. - Create your feature branch:
git checkout -b my-new-feature. - Commit your changes:
git commit -am 'Add some feature'. - Push to the branch:
git push origin my-new-feature. - Send a pull request :D.
Not listed famous pry plugins is welcome!!
license
Released under the MIT license, See LICENSE for details.