Edit the gemspec to pick up the correct files for the ruby driver
This commit is contained in:
parent
a9b3c8e7a5
commit
1bbe2c92a5
|
@ -12,7 +12,8 @@ Gem::Specification.new do |s|
|
||||||
s.require_paths = ['lib']
|
s.require_paths = ['lib']
|
||||||
|
|
||||||
s.files = ['README.rdoc', 'Rakefile', 'mongo-ruby-driver.gemspec', 'LICENSE.txt']
|
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.test_files = Dir['test/**/*.rb']
|
||||||
|
|
||||||
s.has_rdoc = true
|
s.has_rdoc = true
|
||||||
|
|
Loading…
Reference in New Issue