From aa74507523444afc9d3fbcced29fbcfbaa29694a Mon Sep 17 00:00:00 2001 From: Juanito Fatas Date: Thu, 12 Mar 2015 15:47:49 +0800 Subject: [PATCH] [ci skip] Fix an extra space in a sentence in gemspec description. Before ``` it is highly recommended that you use a Ruby implementation with real threads like Rubinius or JRuby. ``` After ``` it is highly recommended that you use a Ruby implementation with real threads like Rubinius or JRuby. ``` --- puma.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/puma.gemspec b/puma.gemspec index 9243cd68..4f3ce347 100644 --- a/puma.gemspec +++ b/puma.gemspec @@ -17,7 +17,7 @@ Gem::Specification.new do |s| s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Evan Phoenix"] s.date = `git log --pretty="%ai" -n 1`.split(" ").first - s.description = "Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack applications. Puma is intended for use in both development and production environments. In order to get the best throughput, it is highly recommended that you use a Ruby implementation with real threads like Rubinius or JRuby." + s.description = "Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack applications. Puma is intended for use in both development and production environments. In order to get the best throughput, it is highly recommended that you use a Ruby implementation with real threads like Rubinius or JRuby." s.email = ["evan@phx.io"] s.executables = ["puma", "pumactl"] s.extensions = ["ext/puma_http11/extconf.rb"]