amqp 1.0.3 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +12 -7
  3. data/amqp.gemspec +1 -1
  4. data/lib/amqp/version.rb +1 -1
  5. metadata +5 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bb2c38fde5f1dbd92d0190d689fc54cede548943
4
- data.tar.gz: f4f9cfa75b8a0a718082ca578b8828b7d7bea08e
3
+ metadata.gz: 9f4554e86bc490a5dd3f2f784c70832873ed368e
4
+ data.tar.gz: 80190eba660ef0ec09858e79ad12d0a5709e5f9f
5
5
  SHA512:
6
- metadata.gz: f395c31d44b413858707e9a396042dca5bcef8b8f35605b5646e8b14c160eb51aa028ae8fe58fd6d533a1fc98b5c324db1086f3de01f7547032479ad5a240dbe
7
- data.tar.gz: 9dca4354acf749442481b3c954c41aaa2649b75c0bfdcf81517d276ca4f4dd3bc43cc9d44a5462f3795fc7a8d4d4c5ae45ed16531a8e7d036e55d0cace93ca16
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 AMQP is, how do I get started?
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), too.
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 an [open standard for messaging middleware](http://www.amqp.org/confluence/display/AMQP/About+AMQP) that
19
- emphasizes interoperability between different technologies (for example, Java, .NET, Ruby, Python, Node.js, Erlang, C and so on).
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 protocol efficiency. AMQP supports many sophisticated features, for example,
22
- message acknowledgements, returning of messages to producer, redelivery of messages that couldn't be processed, load balancing between message consumers and so on.
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?
@@ -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.8.0"
28
+ s.add_dependency "amq-protocol", ">= 1.9.0"
29
29
 
30
30
  s.rubyforge_project = "amqp"
31
31
  end
@@ -6,5 +6,5 @@ module AMQP
6
6
  #
7
7
  # @see AMQ::Protocol::VERSION
8
8
  # @return [String] AMQP gem version
9
- VERSION = '1.0.3'
9
+ VERSION = '1.0.4'
10
10
  end
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.3
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-10-18 00:00:00.000000000 Z
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.8.0
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.8.0
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.0.6
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