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 8, 2014
1 parent 7f1fcac commit 2f61379
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions t.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,13 @@ Gem::Specification.new do |spec|
spec.description = 'A command-line power tool for Twitter.'
spec.email = 'sferik@gmail.com'
spec.executables = %w[t]
spec.files = %w[CONTRIBUTING.md LICENSE.md README.md Rakefile t.gemspec]
spec.files += Dir.glob('lib/**/*.rb')
spec.files += Dir.glob('bin/**/*')
spec.files += Dir.glob('spec/**/*')
spec.files = %w[CONTRIBUTING.md LICENSE.md README.md t.gemspec] + Dir['bin/*'] + Dir['lib/**/*.rb']
spec.homepage = 'http://sferik.github.com/t/'
spec.licenses = %w[MIT]
spec.name = 't'
spec.require_paths = %w[lib]
spec.required_ruby_version = '>= 1.9.2'
spec.required_rubygems_version = '>= 1.3.5'
spec.summary = 'CLI for Twitter'
spec.test_files = Dir.glob('spec/**/*')
spec.version = T::Version
end

0 comments on commit 2f61379

Please sign in to comment.