From 347b300bc2798cb289c2ad21da8532b77b0b3799 Mon Sep 17 00:00:00 2001 From: Henrik Nyh Date: Wed, 11 Sep 2013 19:37:39 +0200 Subject: gemspec template: clarify summary vs description. I never remember which is which, so I clarified based on http://guides.rubygems.org/specification-reference/. --- lib/bundler/templates/newgem/newgem.gemspec.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/bundler/templates/newgem/newgem.gemspec.tt b/lib/bundler/templates/newgem/newgem.gemspec.tt index 28997f0277..5a3c312aca 100644 --- a/lib/bundler/templates/newgem/newgem.gemspec.tt +++ b/lib/bundler/templates/newgem/newgem.gemspec.tt @@ -8,8 +8,8 @@ Gem::Specification.new do |spec| spec.version = <%=config[:constant_name]%>::VERSION spec.authors = [<%=config[:author].inspect%>] spec.email = [<%=config[:email].inspect%>] - spec.description = %q{TODO: Write a gem description} - spec.summary = %q{TODO: Write a gem summary} + spec.summary = %q{TODO: Write a short summary. Required.} + spec.description = %q{TODO: Write a longer description. Optional.} spec.homepage = "" spec.license = "MIT" -- cgit v1.2.1