This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Stefan Rusterholz (author)
Fri Dec 26 11:08:26 -0800 2008
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
CHANGELOG.rdoc | ||
| |
HISTORY.rdoc | ||
| |
LICENSE.txt | ||
| |
MANIFEST.txt | ||
| |
README.rdoc | ||
| |
Rakefile | ||
| |
TODO.rdoc | ||
| |
docs/ | ||
| |
lib/ | ||
| |
rake/ | ||
| |
spec/ |
README.rdoc
SilverPlatter::Log
Indexing
| Author: | Stefan Rusterholz <stefan.rusterholz+silverplatter-log at gmail.com> |
| Version: | 0.2.0 |
| Website: | silverplatter.rubyforge.org/log |
| Project: | rubyforge.org/projects/silverplatter |
| Git Repository: | github.com/apeiros/silverplatter-log |
| Bugtracker: | rubyforge.org/tracker/?atid=17330&group_id=4522&func=browse |
| Feature Requests: | rubyforge.org/tracker/?atid=17333&group_id=4522&func=browse |
| License: | Ruby License (see LICENSE.txt) |
Summary
SilverPlatter::Log is an easy to use library for Logging.
Description
FIXME
Installing
Via RubyGems
You need for the installation:
- rubygems >= 1.2.0
You need for some of the rake tasks:
- bacon
- flexmock
- git (executable)
- rcov
- rdiscount (or markdown)
- rdoc
To install, do:
gem install silverplatter-log
Note: you might have to use ‘sudo gem install silverplatter-log’
From Github
You need for the installation:
- rubygems >= 1.2.0 (if you want to use any gem tasks)
You need for some of the rake tasks:
- bacon
- flexmock
- git (executable)
- rcov
- rdiscount (or markdown)
- rdoc
To install, do:
curl -L -o silverplatter-log.tgz http://github.com/apeiros/silverplatter-log/tarball/master
tar -xfz silverplatter-log.tgz
cd apeiros-silverplatter-log-<hexid>/trunk
rake gem:install
Note: you might have to use ‘sudo rake gem:install’
Examples
require 'silverplatter/log' include SilverPlatter Log.info 'this is an info' $stdout = Log.collect(Log.to_console, :info) $stderr = Log.collect($stdout, :warn) warn "Kernel#warn" puts "Kernel#puts" include Log::Comfort info "this is an info via Log::Comfort#info"
See in the examples dir for more code examples.
Design
FIXME








