Skip to content

Commit

Permalink
chore: reject tests folders from gem's files
Browse files Browse the repository at this point in the history
  • Loading branch information
DirtyF committed Apr 27, 2020
1 parent fdad089 commit 61c6580
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jekyll-feed.gemspec
Expand Up @@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
spec.homepage = "https://github.com/jekyll/jekyll-feed"
spec.license = "MIT"

spec.files = `git ls-files -z`.split("\x0")
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r!^(test|script|spec|features)/!) }
spec.test_files = spec.files.grep(%r!^spec/!)
spec.require_paths = ["lib"]

Expand Down

0 comments on commit 61c6580

Please sign in to comment.