Edit the gemspec to pick up the correct files for the ruby driver

This commit is contained in:
Charles Remes 2010-03-17 15:22:58 -05:00
parent a9b3c8e7a5
commit 1bbe2c92a5
1 changed files with 2 additions and 1 deletions

View File

@ -12,7 +12,8 @@ Gem::Specification.new do |s|
s.require_paths = ['lib']
s.files = ['README.rdoc', 'Rakefile', 'mongo-ruby-driver.gemspec', 'LICENSE.txt']
s.files += Dir['lib/mongo/*.rb'] + Dir['examples/**/*.rb'] + Dir['bin/**/*.rb']
s.files += ['lib/mongo.rb'] + Dir['lib/mongo/**/*.rb']
s.files += Dir['examples/**/*.rb'] + Dir['bin/**/*.rb']
s.test_files = Dir['test/**/*.rb']
s.has_rdoc = true