Skip to content

Commit

Permalink
Don't depend on Git to list files
Browse files Browse the repository at this point in the history
  • Loading branch information
sferik committed Jun 1, 2012
1 parent 7a96bcd commit 4259925
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions twitter.gemspec
Expand Up @@ -15,13 +15,15 @@ Gem::Specification.new do |gem|
gem.authors = ["John Nunemaker", "Wynn Netherland", "Erik Michaels-Ober", "Steve Richert"]
gem.description = %q{A Ruby wrapper for the Twitter API.}
gem.email = ['nunemaker@gmail.com', 'wynn.netherland@gmail.com', 'sferik@gmail.com', 'steve.richert@gmail.com']
gem.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f)}
gem.files = `git ls-files`.split("\n")
gem.files = %w(LICENSE.md README.md Rakefile twitter.gemspec)
gem.files += Dir.glob("lib/**/*.rb")
gem.files += Dir.glob("spec/**/*")
gem.homepage = 'https://github.com/jnunemaker/twitter'
gem.name = 'twitter'
gem.require_paths = ['lib']
gem.required_rubygems_version = Gem::Requirement.new('>= 1.3.6')
gem.summary = %q{Twitter API wrapper}
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.test_files = Dir.glob("spec/**/*")
gem.version = Twitter::Version.to_s
end

0 comments on commit 4259925

Please sign in to comment.