hiredis 0.4.3 → 0.4.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ module Hiredis
2
+ class Error < StandardError; end
3
+ class ProtocolError < Error; end
4
+ class ReplyError < Error; end
5
+ end
@@ -1,3 +1,3 @@
1
1
  module Hiredis
2
- VERSION = "0.4.3"
2
+ VERSION = "0.4.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hiredis
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.3
4
+ version: 0.4.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-12-01 00:00:00.000000000Z
12
+ date: 2011-12-20 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake-compiler
16
- requirement: &10823340 !ruby/object:Gem::Requirement
16
+ requirement: &70340839820380 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,7 +21,7 @@ dependencies:
21
21
  version: 0.7.1
22
22
  type: :development
23
23
  prerelease: false
24
- version_requirements: *10823340
24
+ version_requirements: *70340839820380
25
25
  description: Ruby extension that wraps Hiredis (blocking connection and reply parsing)
26
26
  email:
27
27
  - pcnoordhuis@gmail.com
@@ -31,32 +31,33 @@ extensions:
31
31
  extra_rdoc_files: []
32
32
  files:
33
33
  - ext/hiredis_ext/extconf.rb
34
+ - ext/hiredis_ext/connection.c
34
35
  - ext/hiredis_ext/hiredis_ext.c
35
36
  - ext/hiredis_ext/reader.c
36
- - ext/hiredis_ext/connection.c
37
37
  - ext/hiredis_ext/hiredis_ext.h
38
+ - vendor/hiredis/async.c
39
+ - vendor/hiredis/dict.c
38
40
  - vendor/hiredis/hiredis.c
41
+ - vendor/hiredis/net.c
39
42
  - vendor/hiredis/sds.c
40
43
  - vendor/hiredis/test.c
41
- - vendor/hiredis/async.c
42
- - vendor/hiredis/net.c
43
- - vendor/hiredis/dict.c
44
- - vendor/hiredis/sds.h
44
+ - vendor/hiredis/async.h
45
+ - vendor/hiredis/dict.h
45
46
  - vendor/hiredis/fmacros.h
46
47
  - vendor/hiredis/hiredis.h
47
48
  - vendor/hiredis/net.h
48
- - vendor/hiredis/dict.h
49
- - vendor/hiredis/async.h
49
+ - vendor/hiredis/sds.h
50
50
  - vendor/hiredis/COPYING
51
51
  - vendor/hiredis/Makefile
52
- - lib/hiredis.rb
53
52
  - lib/hiredis/connection.rb
54
- - lib/hiredis/ruby/connection.rb
55
- - lib/hiredis/ruby/reader.rb
53
+ - lib/hiredis/errors.rb
56
54
  - lib/hiredis/ext/connection.rb
57
55
  - lib/hiredis/ext/reader.rb
58
56
  - lib/hiredis/reader.rb
57
+ - lib/hiredis/ruby/connection.rb
58
+ - lib/hiredis/ruby/reader.rb
59
59
  - lib/hiredis/version.rb
60
+ - lib/hiredis.rb
60
61
  - COPYING
61
62
  - Rakefile
62
63
  homepage: http://github.com/pietern/hiredis-rb