Sha256: 3e6efa20a019c460c27ae189a9e3532baa2b30972e7159b1cc05af5c75a3ac8d

Contents?: true

Size: 1.07 KB

Versions: 2

Compression:

Stored size: 1.07 KB

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', 'HISTORY', 'Rakefile',
    'mongo.gemspec', 'LICENSE.txt']
  s.files += ['lib/mongo.rb'] + Dir['lib/mongo/**/*.rb']
  s.files += Dir['examples/**/*.rb'] + Dir['bin/**/*.rb']
  s.files += Dir['bin/mongo_console']
  s.test_files = Dir['test/**/*.rb']

  s.executables = ['mongo_console']

  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'

  s.add_dependency(%q<bson>, [">= 1.0.5"])
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mongo-1.1 mongo.gemspec
mongo-1.0.9 mongo.gemspec