public
Description: Ruby driver for MongoDB
Homepage: http://api.mongodb.org/ruby
Clone URL: git://github.com/mongodb/mongo-ruby-driver.git
banker (author)
Thu Nov 05 13:14:37 -0800 2009
commit  48b5e069e0eb3db06c339f39a8e0b4d6bb2b3294
tree    36603b08dd4b7fc340e86a0ddf9dc86302fbaaf2
parent  867783c665593b77578691ed93cf7d2ebce5c860
mongo-ruby-driver / mongo-ruby-driver.gemspec
100644 29 lines (20 sloc) 0.834 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
require "lib/mongo"
 
Gem::Specification.new do |s|
  s.name = 'mongo'
 
  s.version = Mongo::VERSION
 
  s.platform = Gem::Platform::RUBY
  s.summary = 'Ruby driver for the MongoDB'
  s.description = 'A Ruby driver for MongoDB. For more information about Mongo, see http://www.mongodb.org.'
 
  s.require_paths = ['lib']
 
  s.files = ['README.rdoc', 'Rakefile', 'mongo-ruby-driver.gemspec', 'LICENSE.txt']
  s.files += Dir['lib/**/*.rb'] + Dir['examples/**/*.rb'] + Dir['bin/**/*.rb']
  s.test_files = Dir['test/**/*.rb']
 
  s.has_rdoc = true
  s.test_files = Dir['test/**/*.rb']
 
  s.has_rdoc = true
  s.rdoc_options = ['--main', 'README.rdoc', '--inline-source']
  s.extra_rdoc_files = ['README.rdoc']
 
  s.authors = ['Jim Menard', 'Mike Dirolf']
  s.email = 'mongodb-dev@googlegroups.com'
  s.homepage = 'http://www.mongodb.org'
end