tuber 0.0.1
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.
- checksums.yaml +7 -0
- data/README.md +14 -0
- data/lib/tuber.rb +5 -0
- metadata +46 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 56b8831d5bdb6338f58cee603b906c4d41a4c36a0a4ac497ab3761838e8e5ffa
|
|
4
|
+
data.tar.gz: 361c630c0d818b347dc033ba14c6679a60ea1d35e8bfb22feae2f86ac9ca151b
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 39705970d8f4128a944dbb48741cebfaf34071eba99a50c5ee308c4b5f5d416d9c6ae2b054ea792701aea751da3fc26fc683d1bad074c38642d9911dd03c2d0e
|
|
7
|
+
data.tar.gz: 1e3e6de54b17990613c44b81d4318cfc5b6dcef81f94bef600614ca93cccf29503c3ab63dbc34decc44a8e2a63def7a6008a029039bd0a87f84dcb14a37e92e0
|
data/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# tuber
|
|
2
|
+
|
|
3
|
+
Ruby client for [Tuber](https://github.com/tuberq/tuber), a fast job queue server written in Rust. Tuber is wire-compatible with [beanstalkd](https://github.com/beanstalkd/beanstalkd) and extends it with unique jobs, concurrency control, job group pipelines, batch operations, weighted queues, and offloaded job bodies.
|
|
4
|
+
|
|
5
|
+
**This gem currently reserves the name while the client is finalized.** In the meantime, use [russet](https://github.com/dkam/russet) — a beaneater fork with full support for Tuber's protocol extensions — to talk to Tuber or beanstalkd from Ruby.
|
|
6
|
+
|
|
7
|
+
## Links
|
|
8
|
+
|
|
9
|
+
- Tuber server: https://github.com/tuberq/tuber
|
|
10
|
+
- Ruby client (current): https://github.com/dkam/russet
|
|
11
|
+
|
|
12
|
+
## License
|
|
13
|
+
|
|
14
|
+
MIT
|
data/lib/tuber.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: tuber
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Dan Milne
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: Ruby client for Tuber, a fast beanstalkd-compatible job queue server.
|
|
13
|
+
This release reserves the gem name; use the russet gem for a full-featured client
|
|
14
|
+
in the meantime.
|
|
15
|
+
email:
|
|
16
|
+
- d@nmilne.com
|
|
17
|
+
executables: []
|
|
18
|
+
extensions: []
|
|
19
|
+
extra_rdoc_files: []
|
|
20
|
+
files:
|
|
21
|
+
- README.md
|
|
22
|
+
- lib/tuber.rb
|
|
23
|
+
homepage: https://github.com/tuberq/tuber-gem
|
|
24
|
+
licenses:
|
|
25
|
+
- MIT
|
|
26
|
+
metadata:
|
|
27
|
+
source_code_uri: https://github.com/tuberq/tuber-gem
|
|
28
|
+
bug_tracker_uri: https://github.com/tuberq/tuber-gem/issues
|
|
29
|
+
rdoc_options: []
|
|
30
|
+
require_paths:
|
|
31
|
+
- lib
|
|
32
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
33
|
+
requirements:
|
|
34
|
+
- - ">="
|
|
35
|
+
- !ruby/object:Gem::Version
|
|
36
|
+
version: 2.7.0
|
|
37
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
38
|
+
requirements:
|
|
39
|
+
- - ">="
|
|
40
|
+
- !ruby/object:Gem::Version
|
|
41
|
+
version: '0'
|
|
42
|
+
requirements: []
|
|
43
|
+
rubygems_version: 4.0.16
|
|
44
|
+
specification_version: 4
|
|
45
|
+
summary: Ruby client for the Tuber job queue server
|
|
46
|
+
test_files: []
|