superfeedr-em-redis 0.2.2 → 0.2.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/Rakefile CHANGED
@@ -15,8 +15,8 @@ task :default => ['redis:test']
15
15
 
16
16
  Bones {
17
17
  name 'superfeedr-em-redis'
18
- authors ['Jonathan Broad', 'Eugene Pimenov']
19
- email 'libc@me.com'
18
+ authors ['Jonathan Broad', 'Eugene Pimenov', 'Stephan Maka']
19
+ email 'stephan@spaceboyz.net'
20
20
  url 'http://github.com/libc/em-redis'
21
21
  summary 'An eventmachine-based implementation of the Redis protocol'
22
22
  description summary
@@ -360,8 +360,8 @@ module EventMachine
360
360
 
361
361
  #e.g. -MISSING
362
362
  when MINUS
363
- @redis_callbacks.shift # throw away the cb?
364
- @error_callback.call(reply_args)
363
+ # Missing, dispatch empty response
364
+ dispatch_response('')
365
365
  # e.g. +OK
366
366
  when PLUS
367
367
  dispatch_response(reply_args)
data/lib/em-redis.rb CHANGED
@@ -2,7 +2,7 @@
2
2
  module EMRedis
3
3
 
4
4
  # :stopdoc:
5
- VERSION = '0.2.2'
5
+ VERSION = '0.2.3'
6
6
  LIBPATH = ::File.expand_path(::File.dirname(__FILE__)) + ::File::SEPARATOR
7
7
  PATH = ::File.dirname(LIBPATH) + ::File::SEPARATOR
8
8
  # :startdoc:
metadata CHANGED
@@ -1,16 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: superfeedr-em-redis
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Broad
8
8
  - Eugene Pimenov
9
+ - Stephan Maka
9
10
  autorequire:
10
11
  bindir: bin
11
12
  cert_chain: []
12
13
 
13
- date: 2010-03-26 00:00:00 +01:00
14
+ date: 2010-03-31 00:00:00 +02:00
14
15
  default_executable:
15
16
  dependencies:
16
17
  - !ruby/object:Gem::Dependency
@@ -31,7 +32,7 @@ dependencies:
31
32
  requirements:
32
33
  - - ">="
33
34
  - !ruby/object:Gem::Version
34
- version: "0"
35
+ version: 1.1.0
35
36
  version:
36
37
  - !ruby/object:Gem::Dependency
37
38
  name: em-spec
@@ -54,7 +55,7 @@ dependencies:
54
55
  version: 3.4.1
55
56
  version:
56
57
  description: An eventmachine-based implementation of the Redis protocol
57
- email: libc@me.com
58
+ email: stephan@spaceboyz.net
58
59
  executables: []
59
60
 
60
61
  extensions: []
@@ -63,7 +64,6 @@ extra_rdoc_files:
63
64
  - History.txt
64
65
  - README.rdoc
65
66
  files:
66
- - .gitignore
67
67
  - History.txt
68
68
  - README.rdoc
69
69
  - Rakefile
data/.gitignore DELETED
@@ -1,2 +0,0 @@
1
- .DS_Store
2
- pkg