TeeSimple
write output to $stdout and $stderr's content to other file or io object.
Installation
Add this line to your application's Gemfile:
gem 'tee_simple'
And then execute:
$ bundle
Or install it yourself as:
$ gem install tee_simple
Usage
require 'tee_simple'
TeeSimple.install('/tmp/tee1.log')
puts 'abcd',1234
STDERR.puts 'defg',5678
# /tmp/tee1.log
abcd
1234
defg
5678
# STDOUT
abcd
1234
defg
5678
Contributing
- Fork it ( https://github.com/[my-github-username]/tee_simple/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request