zk-ruby-zookeeper_jar 3.4.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/*
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in zookeeper_jar.gemspec
4
+ gemspec
@@ -0,0 +1,2 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks
Binary file
@@ -0,0 +1,6 @@
1
+ module ZookeeperJar
2
+ end
3
+
4
+ require 'zookeeper_jar/version'
5
+ require File.expand_path("../zookeeper-#{ZookeeperJar::VERSION}.jar", __FILE__)
6
+
@@ -0,0 +1,3 @@
1
+ module ZookeeperJar
2
+ VERSION = "3.4.5"
3
+ end
@@ -0,0 +1,19 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "zookeeper_jar/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "zk-ruby-zookeeper_jar"
7
+ s.version = ZookeeperJar::VERSION
8
+ # s.platform = 'java'
9
+ s.authors = ["Jonathan D. Simms", "Eric Lindvall"]
10
+ s.email = ["slyphon@gmail.com"]
11
+ s.homepage = "https://github.com/zk-ruby/zookeeper_jar"
12
+ s.summary = %q{the zookeeper jar file wrapped in a gem}
13
+ s.description = s.summary
14
+
15
+ s.files = `git ls-files`.split("\n")
16
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
17
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
18
+ s.require_paths = ["lib"]
19
+ end
metadata ADDED
@@ -0,0 +1,70 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: zk-ruby-zookeeper_jar
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 3
7
+ - 4
8
+ - 5
9
+ version: 3.4.5
10
+ platform: ruby
11
+ authors:
12
+ - Jonathan D. Simms
13
+ - Eric Lindvall
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2013-09-08 00:00:00 -07:00
19
+ default_executable:
20
+ dependencies: []
21
+
22
+ description: the zookeeper jar file wrapped in a gem
23
+ email:
24
+ - slyphon@gmail.com
25
+ executables: []
26
+
27
+ extensions: []
28
+
29
+ extra_rdoc_files: []
30
+
31
+ files:
32
+ - .gitignore
33
+ - Gemfile
34
+ - Rakefile
35
+ - lib/zookeeper-3.4.5.jar
36
+ - lib/zookeeper_jar.rb
37
+ - lib/zookeeper_jar/version.rb
38
+ - zookeeper_jar.gemspec
39
+ has_rdoc: true
40
+ homepage: https://github.com/zk-ruby/zookeeper_jar
41
+ licenses: []
42
+
43
+ post_install_message:
44
+ rdoc_options: []
45
+
46
+ require_paths:
47
+ - lib
48
+ required_ruby_version: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ segments:
53
+ - 0
54
+ version: "0"
55
+ required_rubygems_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ segments:
60
+ - 0
61
+ version: "0"
62
+ requirements: []
63
+
64
+ rubyforge_project:
65
+ rubygems_version: 1.3.6
66
+ signing_key:
67
+ specification_version: 3
68
+ summary: the zookeeper jar file wrapped in a gem
69
+ test_files: []
70
+