summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2019-05-31 23:48:11 -0700
committerGitHub <noreply@github.com>2019-05-31 23:48:11 -0700
commit41341de63a7fac787051cced99f10684af51d561 (patch)
treef8fe47203a34ee92bcb9cc7bee27ef6643808cbe
parent2b0a1a7cf40958e9db4c6704f72cda0edf724b0e (diff)
parentcf5ffe56245ef5992b8873a72f5a06a09bd48b81 (diff)
downloadmixlib-log-41341de63a7fac787051cced99f10684af51d561.tar.gz
Merge pull request #53 from chef/traviss
Remove Travis PR Testing
-rw-r--r--.travis.yml27
-rw-r--r--README.md6
2 files changed, 3 insertions, 30 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 753e3a1..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,27 +0,0 @@
-language: ruby
-cache: bundler
-dist: xenial
-
-before_install:
- - gem install bundler
- - bundle --version
- - gem update --system
- - gem --version
-
-matrix:
- include:
- - rvm: 2.3.8
- - rvm: 2.4.5
- - rvm: 2.5.5
- - rvm: 2.6.2
- - rvm: ruby-head
- allow_failures:
- - rvm: ruby-head
-
-branches:
- only:
- - master
-
-bundler_args: --without docs development
-
-script: bundle exec rake
diff --git a/README.md b/README.md
index 785cce8..0af46ae 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# Mixlib::Log
-[![Build Status Master](https://travis-ci.org/chef/mixlib-log.svg?branch=master)](https://travis-ci.org/chef/mixlib-log) [![Gem Version](https://badge.fury.io/rb/mixlib-log.svg)](https://badge.fury.io/rb/mixlib-log)
+[![Gem Version](https://badge.fury.io/rb/mixlib-log.svg)](https://badge.fury.io/rb/mixlib-log)
Mixlib::Log provides a mixin for enabling a class based logger object, a-la Merb, Chef, and Nanite. To use it:
@@ -25,7 +25,7 @@ Log.fatal('wewt')
By default, `Mixlib::Logger` logs to STDOUT. To alter this, you should call `Log.init`, passing any arguments to the standard Ruby Logger. For example:
```ruby
-Log.init('/tmp/logfile') # log to /tmp/logfile
+Log.init('/tmp/logfile') # log to /tmp/logfile
Log.init('/tmp/logfile', 7) # log to /tmp/logfile, rotate every day
```
@@ -45,7 +45,7 @@ For information on contributing to this project please see our [Contributing Doc
## License & Copyright
-- Copyright:: Copyright (c) 2008-2018 Chef Software, Inc.
+- Copyright:: Copyright (c) 2008-2019 Chef Software, Inc.
- License:: Apache License, Version 2.0
```text