famoseagle-carrot 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/VERSION.yml +1 -1
  2. data/lib/amqp/queue.rb +2 -1
  3. metadata +1 -1
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :patch: 0
3
3
  :major: 0
4
- :minor: 1
4
+ :minor: 2
data/lib/amqp/queue.rb CHANGED
@@ -10,13 +10,14 @@ module AMQP
10
10
  server.send_frame(
11
11
  Protocol::Queue::Declare.new({ :queue => name, :nowait => true }.merge(opts))
12
12
  )
13
+ nil
13
14
  end
14
15
 
15
16
  def delete(opts = {})
16
17
  server.send_frame(
17
18
  Protocol::Queue::Delete.new({ :queue => name, :nowait => true }.merge(opts))
18
19
  )
19
- pp server.next_method
20
+ nil
20
21
  end
21
22
 
22
23
  def pop(opts = {})
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: famoseagle-carrot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amos Elliston