summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2019-05-31 23:01:02 -0700
committerGitHub <noreply@github.com>2019-05-31 23:01:02 -0700
commitb02f49922fde9227eef53de8c6d3878254ba906e (patch)
tree2993598f090763f3815d06f0478217d13271cd5d
parentf6c74c373bb5770c336ca48a540aa2e75207400c (diff)
parent828bafc9fec4c03d73f51f72e773cef7e176de30 (diff)
downloadmixlib-cli-b02f49922fde9227eef53de8c6d3878254ba906e.tar.gz
Merge pull request #62 from chef/bk
Disable Travis testing & Update codeowners
-rw-r--r--.github/CODEOWNERS2
-rw-r--r--.github/PULL_REQUEST_TEMPLATE.md15
-rw-r--r--.travis.yml26
-rw-r--r--README.md10
4 files changed, 10 insertions, 43 deletions
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index 9dbcc7b..a1c440b 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -2,4 +2,4 @@
* @chef/chef-infra-reviewers
.expeditor/** @chef/jex-team
-*.md @chef/docs-team
+*.md @chef/docs-team \ No newline at end of file
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
deleted file mode 100644
index 0df03f8..0000000
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ /dev/null
@@ -1,15 +0,0 @@
-### Description
-
-[Please describe what this change achieves]
-
-### Issues Resolved
-
-[List any existing issues this PR resolves, or any Discourse or
-StackOverflow discussions that are relevant]
-
-### Check List
-
-- [ ] New functionality includes tests
-- [ ] All tests pass
-- [ ] All commits have been signed-off for the Developer Certificate of Origin. See <https://github.com/chef/chef/blob/master/CONTRIBUTING.md#developer-certification-of-origin-dco>
-- [ ] PR title is a worthy inclusion in the CHANGELOG \ No newline at end of file
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 8fb6452..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-language: ruby
-cache: bundler
-dist: xenial
-
-before_install:
- - gem install bundler || true
- - bundle --version
- - gem update --system
- - gem --version
-
-matrix:
- include:
- - 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 d6a560a..b6aa0af 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,14 @@
# Mixlib::CLI
-[![Build Status Master](https://travis-ci.org/chef/mixlib-cli.svg?branch=master)](https://travis-ci.org/chef/mixlib-cli) [![Gem Version](https://badge.fury.io/rb/mixlib-cli.svg)](https://badge.fury.io/rb/mixlib-cli)
+ [![Gem Version](https://badge.fury.io/rb/mixlib-cli.svg)](https://badge.fury.io/rb/mixlib-cli)
+
+**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::CLI provides a class-based command line option parsing object, like the one used in Chef, Ohai and Relish. To use in your project: