diff --git a/lib/thin/version.rb b/lib/thin/version.rb index 2a9f8022..d86e84dc 100644 --- a/lib/thin/version.rb +++ b/lib/thin/version.rb @@ -16,7 +16,7 @@ module VERSION #:nodoc: end NAME = 'thin'.freeze - SERVER = "#{NAME} #{VERSION::STRING} codename #{VERSION::CODENAME}".freeze + SERVER = "#{NAME} #{VERSION::STRING} codename #{VERSION::CODENAME}".freeze def self.win? RUBY_PLATFORM =~ /mswin|mingw/ diff --git a/thin.gemspec b/thin.gemspec index 5b81948b..d5faf34e 100644 --- a/thin.gemspec +++ b/thin.gemspec @@ -8,12 +8,11 @@ Thin::GemSpec ||= Gem::Specification.new do |s| s.name = Thin::NAME s.version = Thin::VERSION::STRING s.platform = Thin.win? ? Gem::Platform::CURRENT : Gem::Platform::RUBY - s.summary = - s.description = "A thin and fast web server" + s.summary = "A thin and fast web server" s.author = "Marc-Andre Cournoyer" s.email = 'macournoyer@gmail.com' s.homepage = 'https://github.com/macournoyer/thin' - s.licenses = ["GPLv2+", "Ruby 1.8"] + s.licenses = ["GPL-2.0+", "Ruby"] s.executables = %w( thin ) s.metadata = {