-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdroonga-engine.gemspec
58 lines (55 loc) · 2.38 KB
/
droonga-engine.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# -*- mode: ruby; coding: utf-8 -*-
#
# Copyright (C) 2013-2014 Droonga Project
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License version 2.1 as published by the Free Software Foundation.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
base_dir = File.dirname(__FILE__)
$LOAD_PATH.unshift(File.join(base_dir, "lib"))
require "droonga/engine/version"
Gem::Specification.new do |gem|
gem.name = "droonga-engine"
gem.version = Droonga::Engine::VERSION
gem.authors = ["Droonga Project"]
gem.email = ["[email protected]"]
gem.summary = "Droonga engine"
gem.description =
"Droonga engine is a core component in Droonga system. " +
"Droonga is a scalable data processing engine based on Groonga. " +
"Droonga means Distributed Groonga."
gem.homepage = "https://github.com/droonga/droonga-engine"
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.require_paths = ["lib"]
gem.add_dependency "archive-zip"
gem.add_dependency "cool.io", ">= 1.3.0"
gem.add_dependency "drndump", ">= 1.0.1"
gem.add_dependency "droonga-client", ">= 0.1.9"
gem.add_dependency "droonga-message-pack-packer", ">= 1.0.2"
gem.add_dependency "groonga-command-parser"
gem.add_dependency "faraday"
gem.add_dependency "faraday_middleware"
gem.add_dependency "json"
gem.add_dependency "rroonga", ">= 4.0.4"
gem.add_dependency "sigdump"
gem.add_dependency "slop", "<= 3.6.0"
gem.add_dependency "sys-proctable"
gem.add_development_dependency "kramdown"
gem.add_development_dependency "bundler"
gem.add_development_dependency "packnga"
gem.add_development_dependency "rake"
gem.add_development_dependency "test-unit"
gem.add_development_dependency "test-unit-notify"
gem.add_development_dependency "test-unit-rr"
end