-
Notifications
You must be signed in to change notification settings - Fork 336
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't package test files with gem [ci skip]
- Loading branch information
Showing
1 changed file
with
1 addition
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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["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 |