README.rdoc
January 27, 2011 ยท View on GitHub
== Description This {ripl}[https://github.com/cldwalker/ripl] plugin colorizes your results.
== Install Install the gem with:
gem install ripl-color_result
== Usage
Add to your ~/.riplrc
require 'ripl/color_result'
You can choose a :color_result_engine. By default, Wirb[https://github.com/janlelis/wirb]] is used. Possible other values are:
- :ap - use {awesome_print}[https://github.com/michaeldv/awesome_print]
- :coderay - use {coderay}[http://coderay.rubychan.de/]
Example (in your ~/.riplrc)
Ripl.config[:color_result_engine] = :coderay
Set it to +nil+ to deactivate result colorization.
You can change the colors used by the default colorization by editing the :color_result_default_schema hash: Ripl.config[:color_result_default_schema][:comma] = :blue
If you use awesome_print, you can override default options using :color_result_ap_options hash: Ripl.config[:color_result_ap_options] = { :multiline => false }
== Credits
Copyright (c) 2010 Jan Lelis http://rbjl.net, see COPYING for details.
Plus contributions by cldwalker and DirtYiCE.
J-_-L