diff --git a/cli/cli.gemspec b/cli/cli.gemspec index a85affd..ba5fbc7 100644 --- a/cli/cli.gemspec +++ b/cli/cli.gemspec @@ -15,8 +15,9 @@ Gem::Specification.new do |gem| *Dir.glob(File.join(__dir__, "bin", "*")) ].select { File.file?(_1) } gem.require_paths = ["lib"] - gem.summary = "Command-line interface" - gem.description = gem.summary + gem.summary = "Provides the CLI component of twenty" + gem.description = "#{gem.summary}. " \ + "See https://rubygems.org/gems/twenty for context." gem.executables = ["twenty"] gem.add_runtime_dependency "cmd.rb", "~> 0.5" gem.add_runtime_dependency "paint", "~> 2.3" diff --git a/cli/cli.gemspec.tt b/cli/cli.gemspec.tt index f1805df..de0dd75 100644 --- a/cli/cli.gemspec.tt +++ b/cli/cli.gemspec.tt @@ -15,8 +15,9 @@ Gem::Specification.new do |gem| *Dir.glob(File.join(__dir__, "bin", "*")) ].select { File.file?(_1) } gem.require_paths = ["lib"] - gem.summary = "Command-line interface" - gem.description = gem.summary + gem.summary = "Provides the CLI component of <%= parent %>" + gem.description = "#{gem.summary}. " \ + "See https://rubygems.org/gems/<%= parent %> for context." gem.executables = ["<%= parent %>"] gem.add_runtime_dependency "cmd.rb", "~> 0.5" gem.add_runtime_dependency "paint", "~> 2.3" diff --git a/client/client.gemspec b/client/client.gemspec index dcacfc7..bf8a60b 100644 --- a/client/client.gemspec +++ b/client/client.gemspec @@ -12,8 +12,10 @@ Gem::Specification.new do |gem| .flat_map { Dir.glob(_1.chomp) } .select { File.file?(_1) } gem.require_paths = ["lib"] - gem.summary = "HTTP client" - gem.description = gem.summary + gem.summary = "Provides the client component of twenty" + gem.description = "#{gem.summary}. " \ + "Static content (HTML, CSS, JS). " \ + "See https://rubygems.org/gems/twenty for context." gem.add_development_dependency "nanoc", "~> 4.12" gem.add_development_dependency "sass", "~> 3.7" gem.add_development_dependency "rainpress", "~> 1.0" diff --git a/client/client.gemspec.tt b/client/client.gemspec.tt index 1bb53cb..6cbc293 100644 --- a/client/client.gemspec.tt +++ b/client/client.gemspec.tt @@ -12,8 +12,10 @@ Gem::Specification.new do |gem| .flat_map { Dir.glob(_1.chomp) } .select { File.file?(_1) } gem.require_paths = ["lib"] - gem.summary = "HTTP client" - gem.description = gem.summary + gem.summary = "Provides the client component of <%= parent %>" + gem.description = "#{gem.summary}. " \ + "Static content (HTML, CSS, JS). " \ + "See https://rubygems.org/gems/<%= parent %> for context." gem.add_development_dependency "nanoc", "~> 4.12" gem.add_development_dependency "sass", "~> 3.7" gem.add_development_dependency "rainpress", "~> 1.0" diff --git a/server/server.gemspec b/server/server.gemspec index b626af6..8787033 100644 --- a/server/server.gemspec +++ b/server/server.gemspec @@ -14,8 +14,9 @@ Gem::Specification.new do |gem| *Dir.glob(File.join(__dir__, "share", "**", "*")), ].select { File.file?(_1) } gem.require_paths = ["lib"] - gem.summary = "HTTP server" - gem.description = gem.summary + gem.summary = "Provides the server component of twenty" + gem.description = "#{gem.summary}. " \ + "See https://rubygems.org/gems/twenty for context." gem.add_runtime_dependency "sequel", "~> 5.78" gem.add_runtime_dependency "sqlite3", "~> 1.6" gem.add_runtime_dependency "graphql", "~> 2.2" diff --git a/server/server.gemspec.tt b/server/server.gemspec.tt index c7f8125..afe3f37 100644 --- a/server/server.gemspec.tt +++ b/server/server.gemspec.tt @@ -14,8 +14,9 @@ Gem::Specification.new do |gem| *Dir.glob(File.join(__dir__, "share", "**", "*")), ].select { File.file?(_1) } gem.require_paths = ["lib"] - gem.summary = "HTTP server" - gem.description = gem.summary + gem.summary = "Provides the server component of <%= parent %>" + gem.description = "#{gem.summary}. " \ + "See https://rubygems.org/gems/<%= parent %> for context." gem.add_runtime_dependency "sequel", "~> 5.78" gem.add_runtime_dependency "sqlite3", "~> 1.6" gem.add_runtime_dependency "graphql", "~> 2.2" diff --git a/twenty.gemspec b/twenty.gemspec index 291c0fb..9dfbfc5 100644 --- a/twenty.gemspec +++ b/twenty.gemspec @@ -10,8 +10,9 @@ Gem::Specification.new do |gem| gem.files = [ *Dir.glob(File.join(__dir__, "host", "lib", "*.rb")), ].select { File.file?(_1) } - gem.summary = "Minimal project management that runs on your computer" - gem.description = gem.summary + gem.summary = "A standalone web application" + gem.description = "#{gem.summary}. " \ + "This gem depends on twenty-cli, twenty-client, and twenty-server." gem.add_runtime_dependency "twenty-server", "0.5.3" gem.add_runtime_dependency "twenty-client", "0.5.3" gem.add_runtime_dependency "twenty-cli", "0.5.3" diff --git a/twenty.gemspec.tt b/twenty.gemspec.tt index ae84d9c..541e3c7 100644 --- a/twenty.gemspec.tt +++ b/twenty.gemspec.tt @@ -10,8 +10,9 @@ Gem::Specification.new do |gem| gem.files = [ *Dir.glob(File.join(__dir__, "host", "lib", "*.rb")), ].select { File.file?(_1) } - gem.summary = "Minimal project management that runs on your computer" - gem.description = gem.summary + gem.summary = "A standalone web application" + gem.description = "#{gem.summary}. " \ + "This gem depends on <%= parent %>-cli, <%= parent %>-client, and <%= parent %>-server." gem.add_runtime_dependency "<%= parent %>-server", "<%= version %>" gem.add_runtime_dependency "<%= parent %>-client", "<%= version %>" gem.add_runtime_dependency "<%= parent %>-cli", "<%= version %>"