Project

yummi

0.0
No commit activity in last 3 years
No release in over 3 years
A tool to colorize your console application.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Yummi

This is a tool to make your console app more tasty. Yummi provides a set of console line elements also with a delegator for colorizing Strings using the awesome gem term-ansicolor.

Installation

Add this line to your application's Gemfile:

gem 'yummi'

And then execute:

$ bundle

Or install it yourself as:

$ gem install yummi

Ruby Tools

Yummi module provides a set of tools to colorize inputs. Check docs for more information about how to build tables, text boxes, colored log formatters and more. You can also check the examples dir to see how to use Yummi features.

Command Line Tools

Yummi exposes a 'yummi' program that you can use to colorize texts and apply patterns to colorize lines (usefull to tail logs).

Examples:

yummi -c intense_red -m "some text"
echo "some text" | yummi -c intense_red
tail -f $JBOSS_HOME/standalone/log/server.log | yummi -p defined-pattern

Line patterns are configured with an yaml file containing:

  • prefix (optional): prefix for pattern
  • suffix (optional): suffix for pattern
  • options (optional): option flags to use
  • patterns: a pattern => color map

Example:

prefix: '\d{2}:\d{2}:\d{2},\d{3}\s'
patterns:
  TRACE : cyan
  DEBUG : blue
  INFO  : black
  WARN  : yellow
  ERROR : red
  FATAL : intense_red

Yummi provides a set of patterns, check yummi/patterns dir.

tail -f $JBOSS_HOME/standalone/log/server.log | yummi -p jboss

User patterns must be in ~/.yummi/patterns directory with the name $PATTERN_NAME.yaml. User patterns can override builtin patterns.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request