From 5f21b4725ffbdf65a12b4e8748f7163275a75525 Mon Sep 17 00:00:00 2001 From: Sebastian Martinez Date: Mon, 29 Aug 2011 20:51:35 -0300 Subject: [PATCH] Refactor files inclusion on gemspec --- exception_notification.gemspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exception_notification.gemspec b/exception_notification.gemspec index 539fd817..95db010c 100644 --- a/exception_notification.gemspec +++ b/exception_notification.gemspec @@ -6,8 +6,8 @@ Gem::Specification.new do |s| s.summary = "Exception notification by email for Rails apps" s.email = "smartinez87@gmail.com" - s.files = `git ls-files -- lib`.split("\n") + %w(Rakefile .gemtest README.md) - s.test_files = Dir.glob "test/**/*_test.rb" + s.files = `git ls-files`.split("\n") + s.test_files = `git ls-files -- test`.split("\n") s.require_path = 'lib' s.add_dependency("actionmailer", ">= 3.0.4")