summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2019-05-31 23:04:40 -0700
committerTim Smith <tsmith@chef.io>2019-05-31 23:04:40 -0700
commit836ca5ba01f66495f79e0727b494bac1cf3f4efb (patch)
treeb19058e5c7130dd1deeb04c3257449ab53d171c5
parent38785186372ae44743f862150bdf373058e965ae (diff)
downloadmixlib-log-github.tar.gz
Add project owner banner / Remove Travis CI testinggithub
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--.github/CODEOWNERS2
-rw-r--r--.travis.yml27
-rw-r--r--README.md14
3 files changed, 12 insertions, 31 deletions
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index 9dbcc7b..f1217b3 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -1,5 +1,5 @@
# Order is important. The last matching pattern has the most precedence.
-* @chef/chef-infra-reviewers
+* @chef/chef-foundation-reviewers
.expeditor/** @chef/jex-team
*.md @chef/docs-team
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..1641158 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,14 @@
# 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)
+
+**Umbrella Project**: [Chef Foundation](https://github.com/chef/chef-oss-practices/blob/master/projects/chef-foundation.md)
+
+**Project State**: [Active](https://github.com/chef/chef-oss-practices/blob/master/repo-management/repo-states.md#active)
+
+**Issues [Response Time Maximum](https://github.com/chef/chef-oss-practices/blob/master/repo-management/repo-states.md)**: 14 days
+
+**Pull Request [Response Time Maximum](https://github.com/chef/chef-oss-practices/blob/master/repo-management/repo-states.md)**: 14 days
Mixlib::Log provides a mixin for enabling a class based logger object, a-la Merb, Chef, and Nanite. To use it:
@@ -25,7 +33,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 +53,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