amqp-spec 0.3.5 → 0.3.6

Sign up to get free protection for your applications and to get access to all the features.
data/HISTORY CHANGED
@@ -77,3 +77,7 @@
77
77
  == 0.3.5 / 2011-01-07
78
78
 
79
79
  * Drop-in support for legacy em-spec based examples added
80
+
81
+ == 0.3.6 / 2011-01-07
82
+
83
+ * Changed Gemfile to avoid circular dependency on AMQP
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.5
1
+ 0.3.6
@@ -1,5 +1,3 @@
1
- require 'mq'
2
-
3
1
  # Monkey patching some methods into AMQP to make it more testable
4
2
  module AMQP
5
3
 
@@ -16,8 +16,8 @@ require 'amqp-spec/evented_example'
16
16
  # will run inside AMQP.start loop without the need to explicitly call 'amqp'. In order to
17
17
  # provide options to AMQP loop, default_options({opts}) macro is defined.
18
18
  #
19
- # Including AMQP::EMSpec module into your example group, each example of this group will run
20
- # inside EM.run loop without the need to explicitly call 'em'.
19
+ # Including AMQP::EMSpec module into your example group, each example of this group will
20
+ # run inside EM.run loop without the need to explicitly call 'em'.
21
21
  #
22
22
  # In order to stop AMQP/EM loop, you should call 'done' AFTER you are sure that your
23
23
  # example is finished and your expectations executed. For example if you are using
@@ -8,6 +8,8 @@ require 'yaml'
8
8
  require 'amqp-spec/rspec'
9
9
  require 'shared_examples'
10
10
 
11
+ require 'mq'
12
+
11
13
  def rspec2?
12
14
  defined?(RSpec)
13
15
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 3
8
- - 5
9
- version: 0.3.5
8
+ - 6
9
+ version: 0.3.6
10
10
  platform: ruby
11
11
  authors:
12
12
  - Arvicco