Sha256: c06bdbbd5ae2dc711cd516b5a712f120ce82f507326c2a7058aecc7f42019718
Contents?: true
Size: 970 Bytes
Versions: 1
Compression:
Stored size: 970 Bytes
Contents
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 += ['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 s.test_files = Dir['test/**/*.rb'] s.test_files -= Dir['test/mongo_bson/*.rb'] # remove these files from the manifest s.has_rdoc = true s.rdoc_options = ['--main', 'README.rdoc', '--inline-source'] s.extra_rdoc_files = ['README.rdoc'] s.authors = ['Jim Menard', 'Mike Dirolf', 'Kyle Banker'] s.email = 'mongodb-dev@googlegroups.com' s.homepage = 'http://www.mongodb.org' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mongo-0.20 | mongo-ruby-driver.gemspec |