forked from stripe-archive/mosql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mosql.gemspec
33 lines (27 loc) · 1.13 KB
/
mosql.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
# -*- coding: utf-8 -*-
$:.unshift(File.expand_path("lib", File.dirname(__FILE__)))
require 'mosql/version'
Gem::Specification.new do |gem|
gem.authors = ["Nelson Elhage"]
gem.email = ["[email protected]"]
gem.description = %q{A library for streaming MongoDB to SQL}
gem.summary = %q{MongoDB -> SQL streaming bridge}
gem.homepage = "https://github.com/stripe/mosql"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "mosql"
gem.require_paths = ["lib"]
gem.version = MoSQL::VERSION
gem.add_runtime_dependency "sequel"
gem.add_runtime_dependency "pg"
gem.add_runtime_dependency "rake"
gem.add_runtime_dependency "log4r"
gem.add_runtime_dependency "json"
gem.add_runtime_dependency "mongoriver", "0.4"
gem.add_runtime_dependency "mongo", "~> 1.10"
gem.add_runtime_dependency "bson", "~> 1.10"
gem.add_runtime_dependency "bson_ext", "~> 1.10"
gem.add_development_dependency "minitest"
gem.add_development_dependency "mocha"
end