forked from mongodb/mongo-ruby-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mongo.gemspec
34 lines (24 loc) · 1022 Bytes
/
mongo.gemspec
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
30
31
32
33
34
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.md', 'Rakefile', 'mongo.gemspec', 'LICENSE.txt']
s.files += ['lib/mongo.rb'] + Dir['lib/mongo/**/*.rb']
s.files += Dir['docs/**/*.md'] + 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.has_rdoc = true
s.rdoc_options = ['--main', 'README.md', '--inline-source']
s.extra_rdoc_files = ['README.md']
s.authors = ['Jim Menard', 'Mike Dirolf', 'Kyle Banker']
s.email = '[email protected]'
s.homepage = 'http://www.mongodb.org'
s.add_dependency(%q<bson>, [">= #{Mongo::VERSION}"])
end