-
Notifications
You must be signed in to change notification settings - Fork 1
/
mongo_test_server.gemspec
25 lines (21 loc) · 1.02 KB
/
mongo_test_server.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/mongo_test_server/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["John Axel Eriksson"]
gem.email = ["[email protected]"]
gem.description = %q{Standalone mongo test server for use with rspec or other unit testing framework}
gem.summary = %q{Standalone mongo test server for use with rspec or other unit testing framework}
gem.homepage = ""
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "mongo_test_server"
gem.require_paths = ["lib"]
gem.version = MongoTestServer::VERSION
gem.add_development_dependency('mongo', '>=1.6.0')
gem.add_development_dependency('moped', '>=1.3.0')
unless RUBY_PLATFORM == 'java'
gem.add_development_dependency('bson_ext', '>=1.3.0')
end
gem.add_development_dependency "rspec", '>=2.6.0'
end