README.rdoc in ripl-0.2.4 vs README.rdoc in ripl-0.2.5

- old
+ new

@@ -59,11 +59,11 @@ * _ for last result * Type 'exit' or Ctrl-D to exit * 6 common commandline options: -f, -r, -I, -d, -h, -v * IRB.conf -> Ripl.config * Enhancements over irb - * ~230 lines vs irb's 5000+ lines + * ~250 lines (doc included) vs irb's 5000+ lines * Easily extendable with plugins * Tests and documentation! * Customizable completion and completion of method arguments (from bond) * Easy to create custom shells for gems and apps i.e. Ripl.start * Easy to create and invoke ripl commands @@ -76,11 +76,11 @@ Note: Irb features not in ripl can be implemented as plugins. == Plugins -A ripl plugin is a module that is included into Ripl::Shell or Ripl::Runner. Being simply modules, +A ripl plugin is a module that is included into Ripl::Shell or extended into Ripl::Runner. Being simply modules, they can be packaged as gems and reused across shells as needed. ripl highly encourages plugins by loading them as early as possible and allowing them to extend most of ripl's functionality. As an example plugin, let's color error messages red: @@ -134,12 +134,14 @@ == Available Plugins * {ripl-rails}[http://github.com/cldwalker/ripl-rails] : script/console for ripl * {ripl-color_error}[http://github.com/cldwalker/ripl-color_error] : colorize errors -* {ripl-after_rc}[http://github.com/cldwalker/ripl-after_rc] : provide blocks to run after ~/.irbrc is loaded * {ripl-multi_line}[http://github.com/janlelis/ripl-multi_line] : evaluate multiple lines +* {ripl-after_rc}[http://github.com/cldwalker/ripl-after_rc] : provide blocks to run after ~/.irbrc is loaded * {ripl-irb}[http://github.com/cldwalker/ripl-irb] : smooths transition from irb +* {ripl-commands}[http://github.com/cldwalker/ripl-commands] : adds ripl commands similar to irb's commands +* {ripl-color_streams}[http://github.com/janlelis/ripl-color_streams] : colorizes stderr + stdout * {ripl-color_result}[http://github.com/janlelis/ripl-color_result] : colorizes results * {nirvana}[http://github.com/cldwalker/nirvana]: Not a plugin but rather a web shell built on top of ripl == Credits * janlelis for bug fix and tweaks