-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathzk-server.gemspec
More file actions
22 lines (19 loc) · 864 Bytes
/
zk-server.gemspec
File metadata and controls
22 lines (19 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/zk-server/version', __FILE__)
Gem::Specification.new do |s|
s.authors = ["Jonathan D. Simms"]
s.email = ["slyphon@gmail.com"]
s.description = %q{runs a standalone zookeeper server}
s.summary = s.description + "\n"
s.homepage = "http://github.com/slyphon/zk-server"
s.add_runtime_dependency 'bundler', '>= 1'
s.add_runtime_dependency 'slyphon-log4j', '= 1.2.15'
s.add_runtime_dependency 'slyphon-zookeeper_jar', '~> 3.3.5'
s.add_runtime_dependency 'slop', '>= 3.2.0', '< 4.0'
s.files = `git ls-files`.split($\)
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.name = "zk-server"
s.require_paths = ["lib"]
s.version = ZK::Server::VERSION
end