This is a Knife plugin to generate a skeleton README.md
file from a cookbook's
metadata.rb file.
- create the first bits of documentation you can build upon
- write documentation that is consistent among your or your team's cookbooks
- implement the DRY/SPOT rule
(
metadata.rb
is the authoritative source of information)
You can install the plugin via RubyGems:
$ gem install knife-cookbook-readme
Alternatively, you can install the plugin from source:
$ git clone git://github.com/mlafeldt/knife-cookbook-readme.git
$ cd knife-cookbook-readme/
$ bundle install
$ bundle exec rake install
Afterwards, the new knife command knife cookbook readme from FILE
will be
available.
knife cookbook readme from FILE (options)
-t, --template FILE Set template file used to render README.md
Examples:
knife cookbook readme from path/to/metadata.rb
knife cookbook readme from path/to/metadata.rb --template README.md.erb
Note that the command will write the generated output to STDOUT. Simply redirect
the output to README.md
to write to a file.
Here is a list of other documentation tools for Chef (sorted alphabetically):
- knife-cookbook-doc (based on knife-cookbook-readme, blog post)
- yard-chef
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
- Fork it
- 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 new Pull Request
- Web: http://mlafeldt.github.com/knife-cookbook-readme
- Mail: mathias.lafeldt@gmail.com
- Twitter: @mlafeldt