From 6f76498f7f366e78af021484111ba7224f95eaa3 Mon Sep 17 00:00:00 2001 From: Iain Beeston Date: Sat, 28 Feb 2015 09:34:47 +0000 Subject: [PATCH] Removed test files from gemspec Should reduce the size of the gem. The default for new gems (created by bundler) is not to include test files. See https://github.com/bundler/bundler/pull/3207 --- json-schema.gemspec | 1 - 1 file changed, 1 deletion(-) diff --git a/json-schema.gemspec b/json-schema.gemspec index 126153c3..1cc71dd7 100644 --- a/json-schema.gemspec +++ b/json-schema.gemspec @@ -13,7 +13,6 @@ Gem::Specification.new do |s| s.summary = "Ruby JSON Schema Validator" s.files = Dir[ "lib/**/*", "resources/*.json" ] s.require_path = "lib" - s.test_files = Dir[ "test/**/test*", "test/{data,schemas}/*.json" ] s.extra_rdoc_files = ["README.textile","LICENSE.md"] s.required_ruby_version = ">= 1.8.7" s.license = "MIT"