Skip to content

Commit

Permalink
Don't package test files with gem [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
sferik committed Oct 9, 2014
1 parent cb57e4d commit 5c57042
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Empty file removed .gemtest
Empty file.
5 changes: 1 addition & 4 deletions twitter.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,12 @@ Gem::Specification.new do |spec|
spec.authors = ['Erik Michaels-Ober', 'John Nunemaker', 'Wynn Netherland', 'Steve Richert', 'Steve Agalloco']
spec.description = 'A Ruby interface to the Twitter API.'
spec.email = %w([email protected])
spec.files = %w(.yardopts CHANGELOG.md CONTRIBUTING.md LICENSE.md README.md Rakefile twitter.gemspec)
spec.files += Dir.glob('lib/**/*.rb')
spec.files += Dir.glob('spec/**/*')
spec.files = %w(.yardopts CHANGELOG.md CONTRIBUTING.md LICENSE.md README.md twitter.gemspec) + Dir['lib/**/*.rb']
spec.homepage = 'http://sferik.github.com/twitter/'
spec.licenses = %w(MIT)
spec.name = 'twitter'
spec.require_paths = %w(lib)
spec.required_rubygems_version = '>= 1.3.5'
spec.summary = spec.description
spec.test_files = Dir.glob('spec/**/*')
spec.version = Twitter::Version
end

0 comments on commit 5c57042

Please sign in to comment.