Skip to content

Commit

Permalink
Merge pull request #82 from amatsuda/exclude_specs_from_gem_package
Browse files Browse the repository at this point in the history
Exclude spec files from gem package
  • Loading branch information
ashie authored Aug 2, 2024
2 parents f2b7e1a + c2676e8 commit 71ecce2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion http_parser.rb.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |s|
s.license = 'MIT'

s.homepage = "https://github.com/tmm1/http_parser.rb"
s.files = `git ls-files`.split("\n") + Dir['ext/ruby_http_parser/vendor/**/*']
s.files = `git ls-files`.split("\n").grep_v(%r{spec/}) + Dir['ext/ruby_http_parser/vendor/**/*']

s.require_paths = ["lib"]
s.extensions = ["ext/ruby_http_parser/extconf.rb"]
Expand Down

0 comments on commit 71ecce2

Please sign in to comment.