amqp-spec 0.1.7 → 0.1.8

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.
Files changed (4) hide show
  1. data/HISTORY +6 -14
  2. data/README.rdoc +1 -1
  3. data/VERSION +1 -1
  4. metadata +19 -3
data/HISTORY CHANGED
@@ -20,11 +20,7 @@
20
20
 
21
21
  == 0.1.0 / 2010-10-15
22
22
 
23
- * Monkeypatched start/stop_connection into AMQP
24
-
25
- == 0.1.1 / 2010-10-15
26
-
27
- * Cleanup in AMQP.cleanup
23
+ * Monkeypatched start/stop_connection directly into AMQP
28
24
 
29
25
  == 0.1.2 / 2010-10-15
30
26
 
@@ -36,16 +32,12 @@
36
32
 
37
33
  == 0.1.4 / 2010-10-15
38
34
 
39
- * Problematic tests fixed
40
-
41
- == 0.1.5 / 2010-10-15
42
-
43
- * Clean up debugging output
44
-
45
- == 0.1.6 / 2010-10-15
46
-
47
- * README tweaked
35
+ * Problematic tests all fixed
48
36
 
49
37
  == 0.1.7 / 2010-10-15
50
38
 
51
39
  * em interface improved for timeout arg
40
+
41
+ == 0.1.8 / 2010-10-15
42
+
43
+ * Add AMQP as a dependency
@@ -83,7 +83,7 @@ Another option is to include AMQP::Spec in your describe block. This will patch
83
83
  examples run inside an amqp block automatically. A word of caution about before{} and after{} hooks in your example
84
84
  groups including AMQP::Spec. Each of these hooks will run in its separate EM loop that you'll need to shut down
85
85
  either manually (done) or via default_timeout. Essentially, this means that any EM-related state that you'd like
86
- to setup/teardown using these hooks will be lost as each example will run in a separate thread. In order to
86
+ to setup/teardown using these hooks will be lost as each example will run in a separate EM loop. In order to
87
87
  run setup/teardown hooks inside the EM loop, you'll need to use before_amqp{} and after_amqp{} hooks that run
88
88
  inside the EM loop but before/after AMQP loop (these hooks are currently not implemented)
89
89
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.7
1
+ 0.1.8
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: amqp-spec
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 11
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 7
10
- version: 0.1.7
9
+ - 8
10
+ version: 0.1.8
11
11
  platform: ruby
12
12
  authors:
13
13
  - Arvicco
@@ -34,6 +34,22 @@ dependencies:
34
34
  version: 1.2.9
35
35
  type: :development
36
36
  version_requirements: *id001
37
+ - !ruby/object:Gem::Dependency
38
+ name: amqp
39
+ prerelease: false
40
+ requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ hash: 9
46
+ segments:
47
+ - 0
48
+ - 6
49
+ - 7
50
+ version: 0.6.7
51
+ type: :runtime
52
+ version_requirements: *id002
37
53
  description: Simple API for writing (asynchronous) AMQP specs
38
54
  email: arvitallian@gmail.com
39
55
  executables: []