kafka-clients-jruby 1.0.0.pre0-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.yardopts +4 -0
- data/README.md +37 -0
- data/lib/kafka/clients/ext/kafka_clients.jar +0 -0
- data/lib/kafka/clients/version.rb +7 -0
- data/lib/kafka/clients.rb +7 -0
- metadata +47 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 5b8d7494c51897b53efc988207face0fa90ccb5b
|
4
|
+
data.tar.gz: 3ba676560f6c2ae2d0266cd8d3ec62ecd2f72c40
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ed3289705b9a695fd9167dab7a55d50b760e1928f63c061a360a93f14873e7f347ba6907ebd04f777e5fe9c593249f1796b1d1bf21fb6016f50a16014ebd57a1
|
7
|
+
data.tar.gz: 7dd8fe2e2ef8735a871e353afed9a98955817ebab7948fee5e67193469ba71f5451768aeb7cc62ed679eef913c9fe4fcdd83a60c7de03e3ced4f8b9922e596fd
|
data/.yardopts
ADDED
data/README.md
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
# Kafka clients for JRuby
|
2
|
+
|
3
|
+
[![Build Status](https://travis-ci.org/burtcorp/kafka-clients-jruby.png?branch=master)](https://travis-ci.org/burtcorp/kafka-clients-jruby)
|
4
|
+
|
5
|
+
_If you're reading this on GitHub, please note that this is the readme for the development version and that some features described here might not yet have been released. You can find the readme for a specific version via the release tags ([here is an example](https://github.com/burtcorp/kafka-clients-jruby/releases/tag/v1.0.0))._
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
kafka-clients-jruby is available from RubyGems. Either install it manually:
|
10
|
+
|
11
|
+
```
|
12
|
+
$ gem install kafka-clients-jruby
|
13
|
+
```
|
14
|
+
|
15
|
+
or add this to your `Gemfile`:
|
16
|
+
|
17
|
+
```ruby
|
18
|
+
gem 'kafka-clients-jruby', require: 'kafka/clients'
|
19
|
+
```
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
```ruby
|
24
|
+
```
|
25
|
+
|
26
|
+
## How to build and run the tests
|
27
|
+
|
28
|
+
The best place to see how to build and run the tests is to look at the `.travis.yml` file, but if you just want to get going run:
|
29
|
+
|
30
|
+
```
|
31
|
+
$ bundle install
|
32
|
+
$ bundle exec rake
|
33
|
+
```
|
34
|
+
|
35
|
+
# Copyright
|
36
|
+
|
37
|
+
© 2016 Burt AB, see LICENSE.txt (BSD 3-Clause).
|
Binary file
|
metadata
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: kafka-clients-jruby
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0.pre0
|
5
|
+
platform: java
|
6
|
+
authors:
|
7
|
+
- Theo Hultberg
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-10-07 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: Native JRuby wrappers of the Kafka producer and consumer clients
|
14
|
+
email: theo@burtcorp.com
|
15
|
+
executables: []
|
16
|
+
extensions: []
|
17
|
+
extra_rdoc_files: []
|
18
|
+
files:
|
19
|
+
- ".yardopts"
|
20
|
+
- README.md
|
21
|
+
- lib/kafka/clients.rb
|
22
|
+
- lib/kafka/clients/ext/kafka_clients.jar
|
23
|
+
- lib/kafka/clients/version.rb
|
24
|
+
homepage:
|
25
|
+
licenses: []
|
26
|
+
metadata: {}
|
27
|
+
post_install_message:
|
28
|
+
rdoc_options: []
|
29
|
+
require_paths:
|
30
|
+
- lib
|
31
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
32
|
+
requirements:
|
33
|
+
- - ">="
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: '0'
|
36
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 1.3.1
|
41
|
+
requirements: []
|
42
|
+
rubyforge_project:
|
43
|
+
rubygems_version: 2.6.6
|
44
|
+
signing_key:
|
45
|
+
specification_version: 4
|
46
|
+
summary: Kafka clients for JRuby
|
47
|
+
test_files: []
|