Please review pull request #160: Ticket/1.6.x/12170 add gem spec description opened by (MosesMendoza)
Description:
Without this patch, the gem spec file is missing a
description attribute, which causes a warning message
when generating the gem. This patch adds a description
attribute to the spec with the facter tagline
'You can prove anything with facts!'
Signed-off-by: Moses Mendoza [email protected]
- Opened: Fri Jan 27 19:41:59 UTC 2012
- Based on: puppetlabs:1.6.x (1336cb36510052ae582bdffb71c81c73a54836a0)
- Requested merge: MosesMendoza:ticket/1.6.x/12170_add_gem_spec_description (f6bbe14bb0d0f9da8f4107e9c1f90bb1df0a937a)
Diff follows:
diff --git a/Rakefile b/Rakefile
index 380416b..063c259 100644
--- a/Rakefile
+++ b/Rakefile
@@ -38,6 +38,7 @@ spec = Gem::Specification.new do |spec|
spec.executables = %w{facter}
spec.version = Facter::FACTERVERSION
spec.summary = 'Facter, a system inventory tool'
+ spec.description = 'You can prove anything with facts!'
spec.author = 'Puppet Labs'
spec.email = '[email protected]'
spec.homepage = 'http://puppetlabs.com'
-- You received this message because you are subscribed to the Google Groups "Puppet Developers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to [email protected].
For more options, visit this group at http://groups.google.com/group/puppet-dev?hl=en.
