From b0ba3a7cfabaa4e806f7de14e972c23911c8194e Mon Sep 17 00:00:00 2001 From: jtimberman Date: Thu, 2 Jun 2011 13:37:44 -0600 Subject: [PATCH] openssl v1.0, readme to markdown --- openssl/{README.rdoc => README.md} | 18 +++++++++++------- openssl/metadata.rb | 8 ++++---- 2 files changed, 15 insertions(+), 11 deletions(-) rename openssl/{README.rdoc => README.md} (72%) diff --git a/openssl/README.rdoc b/openssl/README.md similarity index 72% rename from openssl/README.rdoc rename to openssl/README.md index 47d6727f3..cc40a8fe2 100644 --- a/openssl/README.rdoc +++ b/openssl/README.md @@ -1,12 +1,15 @@ -= DESCRIPTION: +Description +==== -Library provides a method to generate secure passwords for use in recipes. +Provide a library method to generate secure random passwords in recipes. -= REQUIREMENTS: +Requirements +==== -OpenSSL Ruby bindings must be installed, which are a requirement for Chef anyway. +Works on any platform with OpenSSL Ruby bindings installed, which are a requirement for Chef anyway. -= USAGE: +Usage +==== Most often this will be used to generate a secure password for an attribute. @@ -14,11 +17,12 @@ Most often this will be used to generate a secure password for an attribute. set_unless[:my_password] = secure_password -= LICENSE and AUTHOR: +License and Author +==== Author:: Joshua Timberman () -Copyright:: 2009, Opscode, Inc +Copyright:: 2009-2011, Opscode, Inc Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/openssl/metadata.rb b/openssl/metadata.rb index 7f8e79b64..2d7d8f2da 100644 --- a/openssl/metadata.rb +++ b/openssl/metadata.rb @@ -1,8 +1,8 @@ maintainer "Opscode, Inc." maintainer_email "cookbooks@opscode.com" license "Apache 2.0" -description "Installs/Configures openssl" -long_description IO.read(File.join(File.dirname(__FILE__), 'README.rdoc')) -version "0.1" +description "Provides a library with a method for generating secure random passwords." +long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) +version "1.0.0" -recipe "openssl", "Empty, this cookbook provides a library, see README" +recipe "openssl", "Empty, this cookbook provides a library, see README.md"