Skip to content

Commit

Permalink
Merge pull request #217 from olleolleolle/fix/exclude-rubocop-yml-fro…
Browse files Browse the repository at this point in the history
…m-gemspec

gemspec: Exclude various YAML configuration files
  • Loading branch information
hsbt authored Aug 18, 2017
2 parents abc493f + 04f5778 commit 7b01b8a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rake.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ Rake has the following features:
s.homepage = "https://github.com/ruby/rake".freeze
s.licenses = ["MIT".freeze]

s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } -
%w[.rubocop.yml .travis.yml appveyor.yml]
s.bindir = "exe"
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
s.require_paths = ["lib".freeze]
Expand Down

0 comments on commit 7b01b8a

Please sign in to comment.