Skip to content

Commit

Permalink
Refactor files inclusion on gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
smartinez87 committed Aug 29, 2011
1 parent 2e5d00a commit 5f21b47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exception_notification.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Gem::Specification.new do |s|
s.summary = "Exception notification by email for Rails apps"
s.email = "[email protected]"

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")
Expand Down

0 comments on commit 5f21b47

Please sign in to comment.