aboutsummaryrefslogtreecommitdiff
path: root/README.rdoc
diff options
context:
space:
mode:
authorBen Beltran <ben@freshout.us>2013-03-25 17:03:19 -0600
committerBen Beltran <ben@freshout.us>2013-03-25 17:03:19 -0600
commit08ce17a6d30a2f40459a4eecc7db20e1931046f9 (patch)
tree46491f6c92864bd22865ea1e05caca614d0041a3 /README.rdoc
parent371a7688fcd47c0bdff4a102a0b119da40c643bb (diff)
Just getting ready to jsonify stuff
Diffstat (limited to 'README.rdoc')
-rw-r--r--README.rdoc51
1 files changed, 0 insertions, 51 deletions
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.