Skip to content

Commit

Permalink
Don't package test files with gem [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
sferik committed Oct 8, 2014
1 parent a53e3cc commit b3f2a9b
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions delayed_job_active_record.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,11 @@ Gem::Specification.new do |spec|
spec.authors = ["Brian Ryckbost", "Matt Griffin", "Erik Michaels-Ober"]
spec.description = "ActiveRecord backend for Delayed::Job, originally authored by Tobias Lütke"
spec.email = ["[email protected]", "[email protected]", "[email protected]"]
spec.files = %w(CONTRIBUTING.md LICENSE.md README.md Rakefile delayed_job_active_record.gemspec)
spec.files += Dir.glob("lib/**/*.rb")
spec.files += Dir.glob("spec/**/*")
spec.files = %w(CONTRIBUTING.md LICENSE.md README.md delayed_job_active_record.gemspec) + Dir.glob("lib/**/*.rb")
spec.homepage = "http://github.com/collectiveidea/delayed_job_active_record"
spec.licenses = ["MIT"]
spec.name = "delayed_job_active_record"
spec.require_paths = ["lib"]
spec.summary = "ActiveRecord backend for DelayedJob"
spec.test_files = Dir.glob("spec/**/*")
spec.version = "4.0.2"
end

0 comments on commit b3f2a9b

Please sign in to comment.