Sha256: 740e6f316cd51817c49fefc04a4564cac64d2a48752346a116a9cc2e3e68c9a4

Contents?: true

Size: 1.36 KB

Versions: 2

Compression:

Stored size: 1.36 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'zookeeper/version'

Gem::Specification.new do |s|
  s.name        = 'zookeeper-ng'
  s.version     = Zookeeper::VERSION

  s.authors     = [
    "Phillip Pearson", 
    "Eric Maland", 
    "Evan Weaver", 
    "Brian Wickman", 
    "Neil Conway",
    "Jonathan D. Simms",
    "Mal McKay",
  ]
  s.email       = ["slyphon@gmail.com"]
  s.summary     = %q{Apache ZooKeeper driver for Rubies}
  s.description = <<-EOS
A low-level multi-Ruby wrapper around the ZooKeeper API bindings. For a
friendlier interface, see http://github.com/slyphon/zk. Currently supported:
MRI: {2.5, 2.6, 2.7, 3.0}, JRuby: ~> 9.2.x.x

This library uses version #{Zookeeper::DRIVER_VERSION} of zookeeper bindings.

  EOS

  s.homepage    = 'https://github.com/slyphon/zookeeper'

  s.files         = `git ls-files`.split("\n")
  s.require_paths = ["lib"]

  if ENV['JAVA_GEM'] or defined?(::JRUBY_VERSION)
    s.platform = 'java'
    s.add_runtime_dependency('slyphon-log4j',         '= 1.2.15')
    s.add_runtime_dependency('slyphon-zookeeper_jar', '= 3.3.5')
    s.require_paths += %w[java]
  else
    s.require_paths += %w[ext]
    s.extensions = 'ext/extconf.rb'
  end

  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
zookeeper-ng-1.5.2.1 zookeeper.gemspec
zookeeper-ng-1.5.2.1-java zookeeper.gemspec