forked from mongodb/mongo-ruby-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmongo.gemspec
23 lines (19 loc) · 1011 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
Gem::Specification.new do |s|
s.name = 'mongo'
s.version = File.read(File.join(File.dirname(__FILE__), 'VERSION'))
s.platform = Gem::Platform::RUBY
s.authors = ['Tyler Brock', 'Gary Murakami', 'Emily Stolfo', 'Brandon Black']
s.email = '[email protected]'
s.homepage = 'http://www.mongodb.org'
s.summary = 'Ruby driver for MongoDB'
s.description = 'A Ruby driver for MongoDB. For more information about Mongo, see http://www.mongodb.org.'
s.rubyforge_project = 'mongo'
s.files = ['mongo.gemspec', 'LICENSE', 'VERSION']
s.files += ['README.md', 'Rakefile', 'bin/mongo_console']
s.files += ['lib/mongo.rb'] + Dir['lib/mongo/**/*.rb'] + Dir['examples/**/*.rb']
s.test_files = Dir['test/**/*.rb']
s.executables = ['mongo_console']
s.require_paths = ['lib']
s.has_rdoc = 'yard'
s.add_dependency('bson', "~> #{s.version}")
end