From f7fc69ea2a4c005cd769901a442edb052bf4c00f Mon Sep 17 00:00:00 2001 From: Michael Hashizume Date: Fri, 12 Apr 2024 10:42:13 -0700 Subject: [PATCH] Flesh out Gemspec description Prior to this commit, Puppet's Gemspec summary and description were identical short, single sentences. This commit updates Puppet's Gemspec description to a longer explanation of what Puppet does, taken from Puppet's README. (cherry picked from commit 2aff3bb34b33839294d82fef513c2595f58856fe) --- .gemspec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gemspec b/.gemspec index 1e038cbf1cd..b00a037bfa6 100644 --- a/.gemspec +++ b/.gemspec @@ -21,7 +21,10 @@ Gem::Specification.new do |s| s.required_ruby_version = Gem::Requirement.new(">= 2.5.0") s.authors = ["Puppet Labs"] s.date = "2012-08-17" - s.description = "Puppet, an automated configuration management tool" + s.description = <<~EOF + Puppet, an automated administrative engine for your Linux, Unix, and Windows systems, performs administrative tasks + (such as adding users, installing packages, and updating server configurations) based on a centralized specification. + EOF s.email = "puppet@puppetlabs.com" s.executables = ["puppet"] s.files = ["bin/puppet"]