gitextract_3eo0hgho/ ├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── CHANGES.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── TODO.md ├── asciicast.json ├── bin/ │ ├── rib │ ├── rib-all │ ├── rib-auto │ ├── rib-min │ ├── rib-rack │ └── rib-rails ├── lib/ │ ├── rib/ │ │ ├── all.rb │ │ ├── api.rb │ │ ├── app/ │ │ │ ├── auto.rb │ │ │ ├── rack.rb │ │ │ └── rails.rb │ │ ├── config.rb │ │ ├── core/ │ │ │ ├── completion.rb │ │ │ ├── history.rb │ │ │ ├── last_value.rb │ │ │ ├── multiline.rb │ │ │ ├── readline.rb │ │ │ ├── squeeze_history.rb │ │ │ └── strip_backtrace.rb │ │ ├── core.rb │ │ ├── debug.rb │ │ ├── extra/ │ │ │ ├── autoindent.rb │ │ │ ├── byebug.rb │ │ │ ├── hirb.rb │ │ │ ├── paging.rb │ │ │ └── spring.rb │ │ ├── more/ │ │ │ ├── anchor.rb │ │ │ ├── beep.rb │ │ │ ├── bottomup_backtrace.rb │ │ │ ├── caller.rb │ │ │ ├── color.rb │ │ │ ├── edit.rb │ │ │ ├── multiline_history.rb │ │ │ └── multiline_history_file.rb │ │ ├── more.rb │ │ ├── plugin.rb │ │ ├── runner.rb │ │ ├── shell.rb │ │ ├── test/ │ │ │ ├── history.rb │ │ │ └── multiline.rb │ │ ├── test.rb │ │ └── version.rb │ └── rib.rb ├── rib.gemspec └── test/ ├── core/ │ ├── test_completion.rb │ ├── test_history.rb │ ├── test_last_value.rb │ ├── test_multiline.rb │ ├── test_readline.rb │ ├── test_squeeze_history.rb │ └── test_strip_backtrace.rb ├── extra/ │ └── test_autoindent.rb ├── more/ │ ├── test_anchor.rb │ ├── test_beep.rb │ ├── test_caller.rb │ ├── test_color.rb │ └── test_multiline_history.rb ├── test_api.rb ├── test_plugin.rb ├── test_runner.rb └── test_shell.rb