summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-10-29 10:52:08 -0700
committerTim Smith <tsmith@chef.io>2018-10-29 10:52:08 -0700
commit6d3558796fe67c4d83cb8664a3acbaa261a15b8a (patch)
treede8b63709f40b7214e91220c0a23b9e81db9d86e
parent5f29a40b03d0619fc504d6ddcc00be1d8e239be7 (diff)
downloadohai-6d3558796fe67c4d83cb8664a3acbaa261a15b8a.tar.gz
Docs updates
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--OHAI_MVPS.md26
-rw-r--r--README.md19
2 files changed, 29 insertions, 16 deletions
diff --git a/OHAI_MVPS.md b/OHAI_MVPS.md
index fb7c6b5b..3d6df923 100644
--- a/OHAI_MVPS.md
+++ b/OHAI_MVPS.md
@@ -6,20 +6,28 @@ Every release of Chef and Ohai we pick someone from the community to name as the
After receiving three MVP awards from Chef and Ohai releases, we add someone to the hall of fame. We want to express our gratitude to their continuing participation and give newer community members the opportunity to be recognized.
-The [MVP list](https://github.com/opscode/chef/blob/master/CHEF_MVPS.md) is kept in the Chef project.
+The [MVP list](https://github.com/chef/chef/blob/master/CHEF_MVPS.md) is kept in the Chef project.
#### Ohai Release MVP Recipients
| Release | Date | MVP |
|---------|------|-----|
-| Ohai 8.22.0 | 2016-11-30 | Chris Dituri |
-| Ohai 8.21.0 | 2016-10-18 | Phil Dibowitz |
-| Ohai 8.20.0 | 2016-09-07 | Davide Cavalca |
-| Ohai 8.19.0 | 2016-08-11 | Jere Julian |
-| Ohai 8.18.0 | 2016-08-04 | Nate Walck |
-| Ohai 8.17.0 | 2016-06-20 | John Bellone |
-| Ohai 8.16.0 | 2016-05-12 | Elan Ruusamäe |
-| Ohai 8.14.0 | 2016-04-08 | Shahul Khajamohideen |
+| Ohai 13.7 | 2017-12-04 | Zeal Jagannatha |
+| Ohai 13.6 | 2017-10-24 | Phil Dibowitz |
+| Ohai 13.4 | 2017-09-11 | Jeune Asuncion |
+| Ohai 13.3 | 2017-08-10 | Richard McLeod |
+| Ohai 13.2 | 2017-06-29 | Phil Dibowitz |
+| Ohai 13.1 | 2017-05-12 | Akira Kitada |
+| Ohai 13.0 | 2017-04-06 | Sean Escriva |
+| Ohai 8.23 | 2017-01-24 | Bob Dean |
+| Ohai 8.22 | 2016-11-30 | Chris Dituri |
+| Ohai 8.21 | 2016-10-18 | Phil Dibowitz |
+| Ohai 8.20 | 2016-09-07 | Davide Cavalca |
+| Ohai 8.19 | 2016-08-11 | Jere Julian |
+| Ohai 8.18 | 2016-08-04 | Nate Walck |
+| Ohai 8.17 | 2016-06-20 | John Bellone |
+| Ohai 8.16 | 2016-05-12 | Elan Ruusamäe |
+| Ohai 8.14 | 2016-04-08 | Shahul Khajamohideen |
| [Ohai 6.20.0](https://www.chef.io/blog/2013/10/31/release-chef-client-11-8-0-ohai-6-20-0/) | 2013-10-31 | Paul Rossman |
| [Ohai 6.18.0](http://www.chef.io/blog/2013/07/23/chef-client-11-6-0-ohai-6-18-0-and-more/) | 2013-07-19 | Joseph Anthony Pasquale Holsten |
| [Ohai 6.16.0](http://www.chef.io/blog/2013/01/17/ohai-6-16-0-released/) | 2013-01-17 | Sascha Bates |
diff --git a/README.md b/README.md
index 626f596e..fdff54c3 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@ Ohai will print out a JSON data blob for all the known data about your system. W
Chef distributes ohai as a RubyGem. This README is for developers who want to modify the Ohai source code. For users who want to write plugins for Ohai, see the docs:
- General documentation: <https://docs.chef.io/ohai.html>
-- Custom plugin documentation: <https://docs.chef.io/ohai_custom.html>
+- Writing Ohai Plugins documentation: <https://docs.chef.io/ohai_custom.html>
## Development Environment:
@@ -37,11 +37,16 @@ Ohai has some Rake tasks for doing various things.
```
rake -T
-rake build # Build the gem file ohai-$VERSION.gem
-rake install # install the gem locally
-rake install:local # install the gem locally without network access
-rake release # Create tag $VERSION, build gem, and push to Rubygems
-rake spec # Run RSpec tests
+rake build # Build ohai-$VERSION.gem into the pkg directory
+rake clean # Remove any temporary products
+rake clobber # Remove any generated files
+rake docs # Generate YARD Documentation
+rake install # Build and install ohai-$VERSION.gem into system gems
+rake install:local # Build and install ohai-$VERSION.gem into system gems without network access
+rake release[remote] # Create tag $VERSION and build and push ohai-$VERSION.gem to rubygems.org
+rake spec # Run RSpec code examples
+rake style # Run Chefstyle tests
+rake style:auto_correct # Auto-correct RuboCop offenses
($VERSION is the current version, from the GemSpec in Rakefile)
```
@@ -65,7 +70,7 @@ For information on contributing to this project see <https://github.com/chef/che
Ohai - system information application
- Author:: Adam Jacob ([adam@chef.io](mailto:adam@chef.io))
-- Copyright:: Copyright (c) 2008-2016 Chef Software, Inc.
+- Copyright:: Copyright (c) 2008-2018 Chef Software, Inc.
- License:: Apache License, Version 2.0
```text