From 03501041337c5234dc12e4a84ddf063142a7857e Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Mon, 25 Mar 2013 17:03:19 -0600 Subject: Just getting ready to jsonify stuff --- README.rdoc | 51 --------------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 README.rdoc (limited to 'README.rdoc') diff --git a/README.rdoc b/README.rdoc deleted file mode 100644 index 563e17e..0000000 --- a/README.rdoc +++ /dev/null @@ -1,51 +0,0 @@ -= cobalt - -Console for ruby is: Colored, Nesting, Multiple, Smart logging management. - -== Installation - - $ gem install cobalt - -== Usage -[http://github.com/ktlacaelel/cobalt/wiki/example.png] -Try it yourself! - - require 'rubygems' - require 'cobalt' - - stdout = Logger.new(STDOUT) # log to std out, and but dont prefix with anything! - stdout.formatter = proc { |severity, datetime, progname, msg| "#{msg}\n" } - - console = Cobalt::Console.new :loggers => [stdout] - - console.space - console.log 'Initializing Console sample..' - console.separator '-' - console.indent - console.notice 'notice' - console.warn 'warn' - console.error 'error' - console.outdent - - console.space - console.log 'Remember the color, for a few lines..' - console.separator '=' - console.color(:pink) do - console.log 'all this' - console.log 'will be' - console.log 'colored pink' - end - - console.space - - - -== Contributors - -* Fernando TrasviƱa -* Pablo Antonio Gonzalez Cervantes -* Kazuyoshi Tlacaelel - -== Copyright - -Copyright (c) 2012 kazuyoshi tlacaelel. See LICENSE for details. -- cgit