From 0a6ebaa825b331b2b5611c882e59df833f4112b1 Mon Sep 17 00:00:00 2001 From: Ernesto Tagwerker Date: Sat, 27 Apr 2019 16:32:50 -0400 Subject: [PATCH] Add required_ruby_version and description to the gem's configuration It improves the configuration based on what we discussed in https://github.com/clio/ten_years_rails/issues/9 --- ten_years_rails.gemspec | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ten_years_rails.gemspec b/ten_years_rails.gemspec index 1712ac7..777801e 100644 --- a/ten_years_rails.gemspec +++ b/ten_years_rails.gemspec @@ -10,9 +10,12 @@ Gem::Specification.new do |spec| spec.email = ["jnraine@gmail.com"] spec.summary = %q{Companion code to Ten Years of Rails Upgrades} + spec.description = %q{A set of handy tools to upgrade your Rails application and keep it up to date} spec.homepage = "https://github.com/clio/ten_years_rails" spec.license = "MIT" + spec.required_ruby_version = ">= 2.3.0" + spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end