amq-protocol 0.8.1 → 0.8.3
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/Gemfile +3 -18
- data/lib/amq/protocol/version.rb +1 -1
- metadata +5 -7
data/Gemfile
CHANGED
|
@@ -1,29 +1,14 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
|
|
3
|
-
# Use local clones if possible.
|
|
4
|
-
# If you want to use your local copy, just symlink it to vendor.
|
|
5
|
-
extend Module.new {
|
|
6
|
-
def gem(name, options = Hash.new)
|
|
7
|
-
local_path = File.expand_path("../vendor/#{name}", __FILE__)
|
|
8
|
-
if File.exist?(local_path)
|
|
9
|
-
super name, options.merge(:path => local_path).delete_if { |key, _| [:git, :branch].include?(key) }
|
|
10
|
-
else
|
|
11
|
-
super name, options
|
|
12
|
-
end
|
|
13
|
-
end
|
|
14
|
-
}
|
|
15
|
-
|
|
16
3
|
source :rubygems
|
|
17
4
|
|
|
18
|
-
group
|
|
5
|
+
group :development do
|
|
19
6
|
gem "nake", :platform => :mri_19
|
|
20
|
-
|
|
21
7
|
# excludes Windows, Rubinius and JRuby
|
|
22
8
|
gem "perftools.rb", :platform => :mri_18
|
|
23
9
|
end
|
|
24
10
|
|
|
25
|
-
group
|
|
26
|
-
gem "rspec", ">=2.
|
|
27
|
-
gem "simplecov", :platform => :mri_19
|
|
11
|
+
group :test do
|
|
12
|
+
gem "rspec", ">= 2.6.0"
|
|
28
13
|
gem "effin_utf8"
|
|
29
14
|
end
|
data/lib/amq/protocol/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: amq-protocol
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 57
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 8
|
|
9
|
-
-
|
|
10
|
-
version: 0.8.
|
|
9
|
+
- 3
|
|
10
|
+
version: 0.8.3
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Jakub Stastny
|
|
@@ -18,8 +18,7 @@ autorequire:
|
|
|
18
18
|
bindir: bin
|
|
19
19
|
cert_chain: []
|
|
20
20
|
|
|
21
|
-
date: 2011-
|
|
22
|
-
default_executable:
|
|
21
|
+
date: 2011-10-12 00:00:00 Z
|
|
23
22
|
dependencies: []
|
|
24
23
|
|
|
25
24
|
description: " amq-protocol is an AMQP 0.9.1 serialization library for Ruby. It is not an\n AMQP client: amq-protocol only handles serialization and deserialization.\n If you want to write your own AMQP client, this gem can help you with that.\n"
|
|
@@ -75,7 +74,6 @@ files:
|
|
|
75
74
|
- spec/amq/protocol_spec.rb
|
|
76
75
|
- spec/spec_helper.rb
|
|
77
76
|
- tasks.rb
|
|
78
|
-
has_rdoc: true
|
|
79
77
|
homepage: http://github.com/ruby-amqp/amq-protocol
|
|
80
78
|
licenses: []
|
|
81
79
|
|
|
@@ -105,7 +103,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
105
103
|
requirements: []
|
|
106
104
|
|
|
107
105
|
rubyforge_project: amq-protocol
|
|
108
|
-
rubygems_version: 1.
|
|
106
|
+
rubygems_version: 1.8.10
|
|
109
107
|
signing_key:
|
|
110
108
|
specification_version: 3
|
|
111
109
|
summary: AMQP 0.9.1 encoder & decoder.
|