amq-protocol 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/ChangeLog.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## Changes between 1.0.0 and 1.0.1
2
+
3
+ ### Missing require
4
+
5
+ `amq-protocol` now makes sure `DateTime` is loaded before trying to use it.
6
+
7
+
1
8
  ## Changes between 1.0.0.pre6 and 1.0.0.pre7
2
9
 
3
10
  ### AMQ::Settings
@@ -3,6 +3,7 @@
3
3
  require "amq/protocol/client"
4
4
  require "amq/protocol/type_constants"
5
5
  require "amq/protocol/table"
6
+ require "date"
6
7
 
7
8
  module AMQ
8
9
  module Protocol
@@ -1,5 +1,5 @@
1
1
  module AMQ
2
2
  module Protocol
3
- VERSION = "1.0.0"
3
+ VERSION = "1.0.1"
4
4
  end # Protocol
5
5
  end # AMQ
metadata CHANGED
@@ -1,106 +1,105 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: amq-protocol
3
- version: !ruby/object:Gem::Version
4
- prerelease:
5
- version: 1.0.0
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.1
5
+ prerelease:
6
6
  platform: ruby
7
- authors:
8
- - Jakub Stastny
9
- - Michael S. Klishin
10
- - Theo Hultberg
11
- - Mark Abramov
12
- autorequire:
7
+ authors:
8
+ - Jakub Stastny
9
+ - Michael S. Klishin
10
+ - Theo Hultberg
11
+ - Mark Abramov
12
+ autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
-
16
- date: 2012-11-27 00:00:00 Z
15
+ date: 2012-12-06 00:00:00.000000000 Z
17
16
  dependencies: []
18
-
19
- 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"
20
- email:
21
- - michael@novemberain.com
22
- - stastny@101ideas.cz
17
+ description: ! " amq-protocol is an AMQP 0.9.1 serialization library for Ruby. It\
18
+ \ is not an\n AMQP client: amq-protocol only handles serialization and deserialization.\n\
19
+ \ If you want to write your own AMQP client, this gem can help you with that.\n"
20
+ email:
21
+ - !binary |-
22
+ bWljaGFlbEBub3ZlbWJlcmFpbi5jb20=
23
+ - !binary |-
24
+ c3Rhc3RueUAxMDFpZGVhcy5jeg==
23
25
  executables: []
24
-
25
26
  extensions: []
26
-
27
- extra_rdoc_files:
28
- - README.md
29
- files:
30
- - .gitignore
31
- - .gitmodules
32
- - .rspec
33
- - .travis.yml
34
- - ChangeLog.md
35
- - Gemfile
36
- - LICENSE
37
- - PROFILING.md
38
- - README.md
39
- - amq-protocol.gemspec
40
- - codegen/__init__.py
41
- - codegen/amqp_0.9.1_changes.json
42
- - codegen/codegen.py
43
- - codegen/codegen_helpers.py
44
- - codegen/protocol.rb.pytemplate
45
- - generate.rb
46
- - lib/amq/bit_set.rb
47
- - lib/amq/hacks.rb
48
- - lib/amq/int_allocator.rb
49
- - lib/amq/protocol.rb
50
- - lib/amq/protocol/client.rb
51
- - lib/amq/protocol/frame.rb
52
- - lib/amq/protocol/table.rb
53
- - lib/amq/protocol/table_value_decoder.rb
54
- - lib/amq/protocol/table_value_encoder.rb
55
- - lib/amq/protocol/type_constants.rb
56
- - lib/amq/protocol/version.rb
57
- - lib/amq/settings.rb
58
- - spec/amq/bit_set_spec.rb
59
- - spec/amq/hacks_spec.rb
60
- - spec/amq/int_allocator_spec.rb
61
- - spec/amq/protocol/basic_spec.rb
62
- - spec/amq/protocol/blank_body_encoding_spec.rb
63
- - spec/amq/protocol/channel_spec.rb
64
- - spec/amq/protocol/confirm_spec.rb
65
- - spec/amq/protocol/connection_spec.rb
66
- - spec/amq/protocol/constants_spec.rb
67
- - spec/amq/protocol/exchange_spec.rb
68
- - spec/amq/protocol/frame_spec.rb
69
- - spec/amq/protocol/method_spec.rb
70
- - spec/amq/protocol/queue_spec.rb
71
- - spec/amq/protocol/table_spec.rb
72
- - spec/amq/protocol/tx_spec.rb
73
- - spec/amq/protocol/value_decoder_spec.rb
74
- - spec/amq/protocol/value_encoder_spec.rb
75
- - spec/amq/protocol_spec.rb
76
- - spec/amq/settings_spec.rb
77
- - spec/spec_helper.rb
27
+ extra_rdoc_files:
28
+ - README.md
29
+ files:
30
+ - .gitignore
31
+ - .gitmodules
32
+ - .rspec
33
+ - .travis.yml
34
+ - ChangeLog.md
35
+ - Gemfile
36
+ - LICENSE
37
+ - PROFILING.md
38
+ - README.md
39
+ - amq-protocol.gemspec
40
+ - codegen/__init__.py
41
+ - codegen/amqp_0.9.1_changes.json
42
+ - codegen/codegen.py
43
+ - codegen/codegen_helpers.py
44
+ - codegen/protocol.rb.pytemplate
45
+ - generate.rb
46
+ - lib/amq/bit_set.rb
47
+ - lib/amq/hacks.rb
48
+ - lib/amq/int_allocator.rb
49
+ - lib/amq/protocol.rb
50
+ - lib/amq/protocol/client.rb
51
+ - lib/amq/protocol/frame.rb
52
+ - lib/amq/protocol/table.rb
53
+ - lib/amq/protocol/table_value_decoder.rb
54
+ - lib/amq/protocol/table_value_encoder.rb
55
+ - lib/amq/protocol/type_constants.rb
56
+ - lib/amq/protocol/version.rb
57
+ - lib/amq/settings.rb
58
+ - spec/amq/bit_set_spec.rb
59
+ - spec/amq/hacks_spec.rb
60
+ - spec/amq/int_allocator_spec.rb
61
+ - spec/amq/protocol/basic_spec.rb
62
+ - spec/amq/protocol/blank_body_encoding_spec.rb
63
+ - spec/amq/protocol/channel_spec.rb
64
+ - spec/amq/protocol/confirm_spec.rb
65
+ - spec/amq/protocol/connection_spec.rb
66
+ - spec/amq/protocol/constants_spec.rb
67
+ - spec/amq/protocol/exchange_spec.rb
68
+ - spec/amq/protocol/frame_spec.rb
69
+ - spec/amq/protocol/method_spec.rb
70
+ - spec/amq/protocol/queue_spec.rb
71
+ - spec/amq/protocol/table_spec.rb
72
+ - spec/amq/protocol/tx_spec.rb
73
+ - spec/amq/protocol/value_decoder_spec.rb
74
+ - spec/amq/protocol/value_encoder_spec.rb
75
+ - spec/amq/protocol_spec.rb
76
+ - spec/amq/settings_spec.rb
77
+ - spec/spec_helper.rb
78
78
  homepage: http://github.com/ruby-amqp/amq-protocol
79
- licenses:
80
- - MIT
81
- post_install_message:
79
+ licenses:
80
+ - MIT
81
+ post_install_message:
82
82
  rdoc_options: []
83
-
84
- require_paths:
85
- - lib
86
- required_ruby_version: !ruby/object:Gem::Requirement
83
+ require_paths:
84
+ - lib
85
+ required_ruby_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ! '>='
88
+ - !ruby/object:Gem::Version
89
+ version: !binary |-
90
+ MA==
87
91
  none: false
88
- requirements:
89
- - - ">="
90
- - !ruby/object:Gem::Version
91
- version: "0"
92
- required_rubygems_version: !ruby/object:Gem::Requirement
92
+ required_rubygems_version: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ! '>='
95
+ - !ruby/object:Gem::Version
96
+ version: !binary |-
97
+ MA==
93
98
  none: false
94
- requirements:
95
- - - ">="
96
- - !ruby/object:Gem::Version
97
- version: "0"
98
99
  requirements: []
99
-
100
100
  rubyforge_project: amq-protocol
101
101
  rubygems_version: 1.8.24
102
- signing_key:
102
+ signing_key:
103
103
  specification_version: 3
104
104
  summary: AMQP 0.9.1 encoder & decoder.
105
105
  test_files: []
106
-