danielsdeleo-moqueue 0.1.2 → 0.1.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/README.rdoc CHANGED
@@ -44,10 +44,8 @@ What's not working:
44
44
 
45
45
  There are some things that Moqueue may never be able to do. As one prominent example, for queues that are configured to expect acknowledgements (the <tt>:ack=>true</tt> option), the behavior on shutdown is not emulated correctly.
46
46
 
47
- == TODOs
48
- * Mocha-style expectation syntax, i.e. <tt>queue.expects_message("yessss").with_routing_key("awesome.yesItIs")</tt>
49
- * Support for RPC exchanges
50
- * Make it pretty on the inside.
47
+ == Hacking
48
+ Moqueue is at a stage where it "works for me." That said, there may be methods or method signatures that aren't correct/ aren't supported. If this happens to you, fork me and send a pull request when you're done. Patches and feedback welcome.
51
49
 
52
50
  == Moar
53
51
  I wrote an introductory post on my blog, it's probably the best source of high-level discussion right now. Visit: http://kallistec.com/2009/06/21/introducing-moqueue/
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 1
4
- :patch: 2
4
+ :patch: 3
@@ -48,6 +48,10 @@ module Moqueue
48
48
  def unsubscribe
49
49
  true
50
50
  end
51
+
52
+ def prefetch(size)
53
+ # noop
54
+ end
51
55
 
52
56
  def received_ack_for_message?(message_content)
53
57
  acked_messages.include?(message_content)
data/moqueue.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{moqueue}
5
- s.version = "0.1.2"
5
+ s.version = "0.1.3"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Daniel DeLeo"]
@@ -87,6 +87,10 @@ describe MockQueue do
87
87
  pending ("should really remove the association with exchange")
88
88
  @queue.should respond_to(:unsubscribe)
89
89
  end
90
+
91
+ it "should ignore #prefetch but at least raise an error" do
92
+ lambda { @queue.prefetch(1337) }.should_not raise_error
93
+ end
90
94
 
91
95
  it "should raise an error on double subscribe" do
92
96
  @queue.subscribe { |msg| "once" }
@@ -138,4 +142,4 @@ describe MockQueue do
138
142
  queue.received_message?("I'm feelin this").should be_true
139
143
  end
140
144
 
141
- end
145
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: danielsdeleo-moqueue
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel DeLeo