From 4738c14da65e9fe2a1b3c18174d8dd1b7c23aa2c Mon Sep 17 00:00:00 2001 From: aonemd Date: Tue, 29 Nov 2016 01:50:49 +0200 Subject: [PATCH] Update description && remove tests from gem.files --- changit.gemspec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/changit.gemspec b/changit.gemspec index 1ec48b9..6dda531 100644 --- a/changit.gemspec +++ b/changit.gemspec @@ -4,11 +4,14 @@ require File.expand_path('../lib/changit/version', __FILE__) Gem::Specification.new do |gem| gem.authors = ["aaooki"] gem.email = ["aaooki7@gmail.com"] - gem.description = %q{Change git config for multiple projects at once.} - gem.summary = %q{Change git config for multiple projects at once.} + gem.description = %q{An over-engineered tool to change git config for multiple projects at once.} + gem.summary = %q{An over-engineered tool to change git config for multiple projects at once.} gem.homepage = "http://aaooki.github.io" - gem.files = `git ls-files`.split($\) + gem.files = `git ls-files`.split($\).reject do |f| + f.match(%r{^(test|spec|features)/}) + end + gem.executables = ["changit"] gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.name = "changit"