Skip to content

Commit

Permalink
Replace explicit files enumeration with glob in gem spec
Browse files Browse the repository at this point in the history
Try to prevent errors like codecov#119.
  • Loading branch information
AlexWayfer committed Dec 27, 2020
1 parent 04bcb6f commit 830a457
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codecov.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Gem::Specification.new do |s|
s.summary = 'Hosted code coverage'
s.description = 'Hosted code coverage Ruby reporter.'
s.email = ['[email protected]']
s.files = ['lib/codecov.rb', 'lib/codecov/version.rb']
s.files = Dir['lib/**/*.rb']
s.homepage = 'https://github.com/codecov/codecov-ruby'
s.license = 'MIT'
s.platform = Gem::Platform::RUBY
Expand Down

0 comments on commit 830a457

Please sign in to comment.