Skip to content

Commit

Permalink
Merge pull request #1282 from ChrisBr/fix_gemspec
Browse files Browse the repository at this point in the history
Fix gemspec to not include test files from gem
  • Loading branch information
rafaelfranca committed Jul 18, 2018
2 parents eb040cf + e473dc1 commit e2793b2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions rack.gemspec
Expand Up @@ -17,13 +17,12 @@ middleware) into a single method call.
Also see https://rack.github.io/.
EOF

s.files = Dir['{bin/*,contrib/*,example/*,lib/**/*,test/**/*}'] +
s.files = Dir['{bin/*,contrib/*,example/*,lib/**/*}'] +
%w(MIT-LICENSE rack.gemspec Rakefile README.rdoc SPEC)
s.bindir = 'bin'
s.executables << 'rackup'
s.require_path = 'lib'
s.extra_rdoc_files = ['README.rdoc', 'HISTORY.md']
s.test_files = Dir['test/spec_*.rb']

s.author = 'Leah Neukirchen'
s.email = 'leah@vuxu.org'
Expand Down

0 comments on commit e2793b2

Please sign in to comment.