summaryrefslogtreecommitdiff
path: root/bin/pry
Commit message (Collapse)AuthorAgeFilesLines
* Revert e84c34b17a43e2fcfb622f12cb918e19aec6e2baKyrylo Silin2019-11-071-0/+3
|
* rubocop: enable the Style/FrozenStringLiteralComment copKyrylo Silin2019-05-081-0/+2
| | | | This will greatly ease Pry support on Ruby 3.0 (when it's out).
* Update copyrightsKyrylo Silin2018-10-281-4/+0
| | | | | * Added myself (should've done that years ago) * Made it look like Pry is a team effort
* Remove explicit 'rubygems' requiretakiy332015-04-191-6/+1
|
* cli: parse_opts should not actually spin off a replRicho Healey2015-03-111-1/+2
|
* updated cli.rb for new API and added tests for cliJohn Mair2011-12-111-1/+1
|
* Added Pry::CLI class for processing command line options, with plugin support.John Mair2011-12-091-80/+2
| | | | | | | | | | | Plugins can define their own command line options by having a lib/plugin_name/cli.rb file. If this file exists it is loaded immediately before command line options are processed. The contents of the file should be along the lines of: Pry::CLI.add_options do on "my-option", "My first option!" do puts "I just defined an option!" end end
* removed :input_stack => [Readline] from bin/pry, this fixes #327John Mair2011-11-021-1/+1
|
* added --no-history option to pry binaryJohn Mair2011-09-281-12/+15
|
* fixed tiny bug in bin/pry where no -e parameter still resulted in => nil outputJohn Mair2011-09-171-3/+8
|
* pry -e now works using input_stack; should eliminate quirks and limitations ↵John Mair2011-09-161-5/+2
| | | | in behavior
* added error handling to cat commandJohn Mair2011-09-151-0/+0
|
* restore previous command-line switch behaviorRyan Fitzgerald2011-09-081-1/+1
|
* defer loading of requires specified on the command lineRyan Fitzgerald2011-07-241-1/+1
|
* added --installed-plugins switch to pry binary to list installed plugins ↵John Mair2011-06-171-0/+11
| | | | with description
* added --no-pager to binary options, and refactored optionsJohn Mair2011-06-051-9/+19
|
* added --no-plugins command line option to executable, removed unnecessary ↵John Mair2011-06-041-1/+4
| | | | whitespace from introspectin.rb
* Implemented readline history saving (~/.pry_history file by default) along ↵John Mair2011-05-291-1/+1
| | | | with a bunch of options on `Pry.config.history` . Migrating more options over to Pry.config object.
* Move "reset" command Pry::DefaultCommands::Basic.Rob Gleeson2011-05-191-7/+0
|
* Set $0 to "pry".Rob Gleeson2011-05-031-0/+2
|
* Fixed bin/pry (Pry::Commands is not a class anymore)Mon ouïe2011-04-291-1/+1
|
* rely on slop providing helpLee Jarvis2011-04-241-6/+1
|
* fixed spelling mistake in executableJohn Mair2011-04-241-1/+1
|
* fixed 'surpress' typo in pry executableJohn Mair2011-04-241-1/+1
|
* use slop for executableLee Jarvis2011-04-191-39/+24
|
* added 'reset' command (exec("pry")) to bin/pry executableJohn Mair2011-04-101-0/+7
|
* version 0.6.8, added whereami command, made .pryrc run at the start of each ↵v0.6.8John Mair2011-03-061-2/+2
| | | | runtime session, put syntax highlighting on by default
* version 0.6.8pre4, changed Pry::Commands.dup to Pry::Commands.clone due to ↵John Mair2011-03-051-2/+3
| | | | rubinius bug. Made .pryrc run on ordinary pry sessions (not just command line), still need to complete whereami command
* version 0.6.7pre3, getting syntax higlighting working and adding new ↵John Mair2011-03-031-0/+12
| | | | commands to pry commandline, see TODO
* version 0.6.1(pre), added !! as alias for exit-all, added cd/ to return to ↵John Mair2011-02-251-3/+2
| | | | pry toplevel, improved `pry` command line so it uses a rep session on -e code
* version 0.6.0, fixed file require ordering issueJohn Mair2011-02-221-1/+1
|
* version 0.5.8 added -c (context) options to show-method and show-doc and ↵John Mair2011-02-211-6/+14
| | | | eval-file commands, fixed up ordering issue for options in pry command line
* version 0.5.7, added Pry executable, pry --help at command line for more infoJohn Mair2011-02-211-0/+63