From: kazuyoshi tlacaelel Date: Fri, 2 Mar 2012 21:30:16 +0000 (-0600) Subject: Update README.rdoc X-Git-Url: https://git.r.bdr.sh/rbdr/cologne/commitdiff_plain/89c5afeb41fa89d3ccb89c3c5ef685dde735302b?hp=9db887a8c8036f19337719b6e4e581d22eab79a4 Update README.rdoc --- diff --git a/README.rdoc b/README.rdoc index 60bf9ed..f52ad6d 100644 --- a/README.rdoc +++ b/README.rdoc @@ -1,16 +1,44 @@ = cobalt -Description goes here. - -== Note on Patches/Pull Requests - -* Fork the project. -* Make your feature addition or bug fix. -* Add tests for it. This is important so I don't break it in a - future version unintentionally. -* Commit, do not mess with rakefile, version, or history. - (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull) -* Send me a pull request. Bonus points for topic branches. +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 + + == Copyright