amqp 1.0.3 → 1.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +12 -7
- data/amqp.gemspec +1 -1
- data/lib/amqp/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9f4554e86bc490a5dd3f2f784c70832873ed368e
|
4
|
+
data.tar.gz: 80190eba660ef0ec09858e79ad12d0a5709e5f9f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e5a30019a6648312dca81aaac924ebd3a8a156d8bcd32029ed599194b378670022f8f932d769feb3dba93799d162a1aad2843e8d79ce57ad3e054132d986486
|
7
|
+
data.tar.gz: 19061cf19243bcc120ecefb9ba68dc8e112f52f766b9e2e932647c6d98734fda345e9e60daa1a1586507cecaaa78d04a408004f8e14b312cc2a0c43e6db3c9fb
|
data/README.md
CHANGED
@@ -6,20 +6,25 @@ This library works with Ruby 1.8.7 (*except for p249*, see the FAQ), Ruby 1.9.2,
|
|
6
6
|
0.8.0 and later versions of amqp gem implement [AMQP 0.9.1](http://www.rabbitmq.com/tutorials/amqp-concepts.html) (see also [AMQP 0.9.1 spec document](http://bit.ly/amqp091spec)) and support [RabbitMQ extensions to AMQP 0.9.1](http://www.rabbitmq.com/extensions.html).
|
7
7
|
|
8
8
|
|
9
|
-
## I know what
|
9
|
+
## I know what RabbitMQ is, how do I get started?
|
10
10
|
|
11
11
|
See [Getting started with amqp gem](http://rubyamqp.info/articles/getting_started/) and other [amqp gem documentation guides](http://rubyamqp.info/).
|
12
|
-
We recommend that you read [AMQP 0.9.1 Model Explained](http://www.rabbitmq.com/tutorials/amqp-concepts.html)
|
12
|
+
We recommend that you read [AMQP 0.9.1 Model Explained](http://www.rabbitmq.com/tutorials/amqp-concepts.html)
|
13
|
+
and consider [Bunny](http://rubybunny.info) and [March Hare](http://rubymarchhare.info), too.
|
13
14
|
|
14
15
|
|
15
16
|
|
16
|
-
## What is AMQP?
|
17
|
+
## What is AMQP 0.9.1?
|
17
18
|
|
18
|
-
AMQP is
|
19
|
-
|
19
|
+
AMQP 0.9.1 is a messaging middleware protocol that emphasizes
|
20
|
+
interoperability between different technologies (for example, Java,
|
21
|
+
.NET, Ruby, Python, Node.js, Erlang, C and so on).
|
20
22
|
|
21
|
-
Key features of AMQP are very flexible yet simple routing and binary
|
22
|
-
|
23
|
+
Key features of AMQP 0.9.1 are very flexible yet simple routing and binary
|
24
|
+
protocol efficiency. AMQP 0.9.1 supports many sophisticated features, for
|
25
|
+
example, message acknowledgements, returning of messages to producer,
|
26
|
+
redelivery of messages that couldn't be processed, load balancing
|
27
|
+
between message consumers and so on.
|
23
28
|
|
24
29
|
|
25
30
|
## What is amqp gem good for?
|
data/amqp.gemspec
CHANGED
@@ -25,7 +25,7 @@ Gem::Specification.new do |s|
|
|
25
25
|
# Dependencies
|
26
26
|
s.add_dependency "eventmachine"
|
27
27
|
s.add_dependency "amq-client", "~> 1.0.3"
|
28
|
-
s.add_dependency "amq-protocol", ">= 1.
|
28
|
+
s.add_dependency "amq-protocol", ">= 1.9.0"
|
29
29
|
|
30
30
|
s.rubyforge_project = "amqp"
|
31
31
|
end
|
data/lib/amqp/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: amqp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aman Gupta
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2013-
|
13
|
+
date: 2013-11-21 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: eventmachine
|
@@ -46,14 +46,14 @@ dependencies:
|
|
46
46
|
requirements:
|
47
47
|
- - '>='
|
48
48
|
- !ruby/object:Gem::Version
|
49
|
-
version: 1.
|
49
|
+
version: 1.9.0
|
50
50
|
type: :runtime
|
51
51
|
prerelease: false
|
52
52
|
version_requirements: !ruby/object:Gem::Requirement
|
53
53
|
requirements:
|
54
54
|
- - '>='
|
55
55
|
- !ruby/object:Gem::Version
|
56
|
-
version: 1.
|
56
|
+
version: 1.9.0
|
57
57
|
description: Widely used, feature-rich asynchronous RabbitMQ client with batteries
|
58
58
|
included.
|
59
59
|
email:
|
@@ -324,7 +324,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
324
324
|
version: '0'
|
325
325
|
requirements: []
|
326
326
|
rubyforge_project: amqp
|
327
|
-
rubygems_version: 2.
|
327
|
+
rubygems_version: 2.1.6
|
328
328
|
signing_key:
|
329
329
|
specification_version: 4
|
330
330
|
summary: Widely used, feature-rich asynchronous RabbitMQ client with batteries included
|