fotonauts-bunny 0.4.0
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.
- data/LICENSE +20 -0
- data/README +52 -0
- data/Rakefile +6 -0
- data/bunny.gemspec +38 -0
- data/examples/simple.rb +30 -0
- data/examples/simple_ack.rb +33 -0
- data/examples/simple_consumer.rb +55 -0
- data/examples/simple_fanout.rb +39 -0
- data/examples/simple_publisher.rb +27 -0
- data/examples/simple_topic.rb +59 -0
- data/lib/bunny/client.rb +324 -0
- data/lib/bunny/exchange.rb +158 -0
- data/lib/bunny/queue.rb +410 -0
- data/lib/bunny.rb +37 -0
- data/lib/qrack/client.rb +5 -0
- data/lib/qrack/protocol/protocol.rb +135 -0
- data/lib/qrack/protocol/spec.rb +822 -0
- data/lib/qrack/qrack.rb +28 -0
- data/lib/qrack/transport/buffer.rb +267 -0
- data/lib/qrack/transport/frame.rb +100 -0
- data/spec/bunny_spec.rb +36 -0
- data/spec/exchange_spec.rb +117 -0
- data/spec/queue_spec.rb +90 -0
- metadata +76 -0
metadata
ADDED
@@ -0,0 +1,76 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: fotonauts-bunny
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.4.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Chris Duncan
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-05-15 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: Another synchronous Ruby AMQP client
|
17
|
+
email: celldee@gmail.com
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files:
|
23
|
+
- README
|
24
|
+
files:
|
25
|
+
- LICENSE
|
26
|
+
- README
|
27
|
+
- Rakefile
|
28
|
+
- bunny.gemspec
|
29
|
+
- examples/simple.rb
|
30
|
+
- examples/simple_ack.rb
|
31
|
+
- examples/simple_consumer.rb
|
32
|
+
- examples/simple_fanout.rb
|
33
|
+
- examples/simple_publisher.rb
|
34
|
+
- examples/simple_topic.rb
|
35
|
+
- lib/bunny.rb
|
36
|
+
- lib/bunny/client.rb
|
37
|
+
- lib/bunny/exchange.rb
|
38
|
+
- lib/bunny/queue.rb
|
39
|
+
- lib/qrack/client.rb
|
40
|
+
- lib/qrack/protocol/protocol.rb
|
41
|
+
- lib/qrack/protocol/spec.rb
|
42
|
+
- lib/qrack/qrack.rb
|
43
|
+
- lib/qrack/transport/buffer.rb
|
44
|
+
- lib/qrack/transport/frame.rb
|
45
|
+
- spec/bunny_spec.rb
|
46
|
+
- spec/exchange_spec.rb
|
47
|
+
- spec/queue_spec.rb
|
48
|
+
has_rdoc: true
|
49
|
+
homepage: http://github.com/celldee/bunny
|
50
|
+
post_install_message:
|
51
|
+
rdoc_options:
|
52
|
+
- --main
|
53
|
+
- README
|
54
|
+
require_paths:
|
55
|
+
- lib
|
56
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: "0"
|
61
|
+
version:
|
62
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
63
|
+
requirements:
|
64
|
+
- - ">="
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: "0"
|
67
|
+
version:
|
68
|
+
requirements: []
|
69
|
+
|
70
|
+
rubyforge_project: bunny-amqp
|
71
|
+
rubygems_version: 1.2.0
|
72
|
+
signing_key:
|
73
|
+
specification_version: 2
|
74
|
+
summary: A synchronous Ruby AMQP client that enables interaction with AMQP-compliant brokers/servers.
|
75
|
+
test_files: []
|
76
|
+
|