redis-kit 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1d9320951ab3a1a793fcea9121b4da22c33d0f75
4
- data.tar.gz: 7bd105a0a83c9c01794b41812ac9799c86f9d9f1
3
+ metadata.gz: 6be0f57fd2907262b6812ff12bf55a214cbaf21c
4
+ data.tar.gz: d72f99087f715bef8d22fa52da7e4b32af176b25
5
5
  SHA512:
6
- metadata.gz: c9758e011a40c6b080555bce3350b12948392fdc3916b4536e8f90d1616888e189fcc45b983c6050359e8e24f1b10c6e92ad1d0d400e48633dad5b02b6267fc4
7
- data.tar.gz: 326ea00f0665bc6df3c270ec2d8f23c88fbe5a9a0d35a02351fde32574188e0131f9a294991c6a446ff82a5922f0970fda5c01390a5d99980bf9324d643ef0a6
6
+ metadata.gz: 0a5ce7826dcf51a540483430b11547b0dd9b63f56a03f7cdb695ab45811fd580e7050526669c7ee45f11d5b6851889a2ff6044275a3b54c84ff0d696c54c06d7
7
+ data.tar.gz: 2416c3f9bdb7dc9edd8862ad230fcf6ea89958c9e8b6bb352bfef8cb4856e28ab9da38fc51e69b82491477569e59946c899d57fdc7d3b5bce94d01af7e5aa4e6
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ 0.0.6 (November 29th, 2013)
2
+ ---------------------------
3
+
4
+ * Update all gem dependencies.
5
+
1
6
  0.0.5 (October 7th, 2013)
2
7
  -------------------------
3
8
 
data/Gemfile.lock CHANGED
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- redis-kit (0.0.4)
4
+ redis-kit (0.0.5)
5
5
  hiredis (~> 0.4.0)
6
- mock_redis (~> 0.6.0)
6
+ mock_redis (~> 0.10.0)
7
7
  redis (~> 3.0.0)
8
8
 
9
9
  GEM
@@ -11,9 +11,8 @@ GEM
11
11
  specs:
12
12
  celluloid (0.15.2)
13
13
  timers (~> 1.1.0)
14
- coderay (1.0.9)
15
- ffi (1.9.0)
16
- ffi (1.9.0-java)
14
+ coderay (1.1.0)
15
+ ffi (1.9.3)
17
16
  guard (1.6.2)
18
17
  listen (>= 0.6.0)
19
18
  lumberjack (>= 1.0.2)
@@ -23,37 +22,28 @@ GEM
23
22
  guard-minitest (0.5.0)
24
23
  guard (>= 0.4)
25
24
  hiredis (0.4.5)
26
- hiredis (0.4.5-java)
27
- listen (2.0.0)
28
- celluloid (>= 0.15.1)
25
+ listen (2.2.0)
26
+ celluloid (>= 0.15.2)
29
27
  rb-fsevent (>= 0.9.3)
30
28
  rb-inotify (>= 0.9)
31
29
  lumberjack (1.0.4)
32
30
  method_source (0.8.2)
33
- mock_redis (0.6.6)
34
- pry (0.9.12.2)
35
- coderay (~> 1.0.5)
31
+ mock_redis (0.10.0)
32
+ pry (0.9.12.4)
33
+ coderay (~> 1.0)
36
34
  method_source (~> 0.8)
37
35
  slop (~> 3.4)
38
- pry (0.9.12.2-java)
39
- coderay (~> 1.0.5)
40
- method_source (~> 0.8)
41
- slop (~> 3.4)
42
- spoon (~> 0.0)
43
36
  rake (10.0.4)
44
37
  rb-fsevent (0.9.3)
45
38
  rb-inotify (0.9.2)
46
39
  ffi (>= 0.5.0)
47
- redis (3.0.5)
48
- slop (3.4.6)
49
- spoon (0.0.4)
50
- ffi
40
+ redis (3.0.6)
41
+ slop (3.4.7)
51
42
  terminal-table (1.4.5)
52
43
  thor (0.18.1)
53
44
  timers (1.1.0)
54
45
 
55
46
  PLATFORMS
56
- java
57
47
  ruby
58
48
 
59
49
  DEPENDENCIES
data/Makefile CHANGED
@@ -1,7 +1,10 @@
1
1
  dependencies:
2
2
  @bundle install
3
+ @bundle update redis hiredis
3
4
  @cd test/railsapi/ ; BUNDLE_GEMFILE=Gemfile.rails_3_2 bundle install
5
+ @cd test/railsapi/ ; BUNDLE_GEMFILE=Gemfile.rails_3_2 bundle update redis hiredis rails
4
6
  @cd test/railsapi/ ; BUNDLE_GEMFILE=Gemfile.rails_head bundle install
7
+ @cd test/railsapi/ ; BUNDLE_GEMFILE=Gemfile.rails_head bundle update redis hiredis rails
5
8
 
6
9
  ci:
7
10
  bundle exec rake
@@ -1,4 +1,4 @@
1
1
  module RedisKit
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
4
4
 
data/redis-kit.gemspec CHANGED
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
20
20
 
21
21
  s.add_dependency "redis", "~> 3.0.0"
22
22
  s.add_dependency "hiredis", "~> 0.4.0" if RUBY_ENGINE != "jruby"
23
- s.add_dependency "mock_redis", "~> 0.6.0"
23
+ s.add_dependency "mock_redis", "~> 0.10.0"
24
24
  s.add_development_dependency "rake", "~> 10.0.0"
25
25
  s.add_development_dependency "rb-fsevent", "~> 0.9.0"
26
26
  s.add_development_dependency "guard", "~> 1.6.0"
@@ -1,20 +1,20 @@
1
1
  PATH
2
2
  remote: ../../
3
3
  specs:
4
- redis-kit (0.0.4)
4
+ redis-kit (0.0.5)
5
5
  hiredis (~> 0.4.0)
6
- mock_redis (~> 0.6.0)
6
+ mock_redis (~> 0.10.0)
7
7
  redis (~> 3.0.0)
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- actionmailer (3.2.12)
13
- actionpack (= 3.2.12)
14
- mail (~> 2.4.4)
15
- actionpack (3.2.12)
16
- activemodel (= 3.2.12)
17
- activesupport (= 3.2.12)
12
+ actionmailer (3.2.15)
13
+ actionpack (= 3.2.15)
14
+ mail (~> 2.5.4)
15
+ actionpack (3.2.15)
16
+ activemodel (= 3.2.15)
17
+ activesupport (= 3.2.15)
18
18
  builder (~> 3.0.0)
19
19
  erubis (~> 2.7.0)
20
20
  journey (~> 1.0.4)
@@ -22,40 +22,39 @@ GEM
22
22
  rack-cache (~> 1.2)
23
23
  rack-test (~> 0.6.1)
24
24
  sprockets (~> 2.2.1)
25
- activemodel (3.2.12)
26
- activesupport (= 3.2.12)
25
+ activemodel (3.2.15)
26
+ activesupport (= 3.2.15)
27
27
  builder (~> 3.0.0)
28
- activerecord (3.2.12)
29
- activemodel (= 3.2.12)
30
- activesupport (= 3.2.12)
28
+ activerecord (3.2.15)
29
+ activemodel (= 3.2.15)
30
+ activesupport (= 3.2.15)
31
31
  arel (~> 3.0.2)
32
32
  tzinfo (~> 0.3.29)
33
- activeresource (3.2.12)
34
- activemodel (= 3.2.12)
35
- activesupport (= 3.2.12)
36
- activesupport (3.2.12)
37
- i18n (~> 0.6)
33
+ activeresource (3.2.15)
34
+ activemodel (= 3.2.15)
35
+ activesupport (= 3.2.15)
36
+ activesupport (3.2.15)
37
+ i18n (~> 0.6, >= 0.6.4)
38
38
  multi_json (~> 1.0)
39
- arel (3.0.2)
39
+ arel (3.0.3)
40
40
  builder (3.0.4)
41
41
  coderay (1.0.9)
42
42
  erubis (2.7.0)
43
- hike (1.2.1)
43
+ hike (1.2.3)
44
44
  hiredis (0.4.5)
45
45
  hiredis (0.4.5-java)
46
- i18n (0.6.4)
46
+ i18n (0.6.5)
47
47
  journey (1.0.4)
48
- json (1.7.7)
49
- json (1.7.7-java)
50
- mail (2.4.4)
51
- i18n (>= 0.4.0)
48
+ json (1.8.1)
49
+ json (1.8.1-java)
50
+ mail (2.5.4)
52
51
  mime-types (~> 1.16)
53
52
  treetop (~> 1.4.8)
54
53
  method_source (0.8.1)
55
- mime-types (1.21)
54
+ mime-types (1.25.1)
56
55
  minitest (4.6.2)
57
- mock_redis (0.6.6)
58
- multi_json (1.6.1)
56
+ mock_redis (0.10.0)
57
+ multi_json (1.8.2)
59
58
  polyglot (0.3.3)
60
59
  pry (0.9.12)
61
60
  coderay (~> 1.0.5)
@@ -75,21 +74,21 @@ GEM
75
74
  rack
76
75
  rack-test (0.6.2)
77
76
  rack (>= 1.0)
78
- rails (3.2.12)
79
- actionmailer (= 3.2.12)
80
- actionpack (= 3.2.12)
81
- activerecord (= 3.2.12)
82
- activeresource (= 3.2.12)
83
- activesupport (= 3.2.12)
77
+ rails (3.2.15)
78
+ actionmailer (= 3.2.15)
79
+ actionpack (= 3.2.15)
80
+ activerecord (= 3.2.15)
81
+ activeresource (= 3.2.15)
82
+ activesupport (= 3.2.15)
84
83
  bundler (~> 1.0)
85
- railties (= 3.2.12)
84
+ railties (= 3.2.15)
86
85
  rails-api (0.0.3)
87
86
  actionpack (>= 3.2.6)
88
87
  railties (>= 3.2.6)
89
88
  tzinfo (~> 0.3.31)
90
- railties (3.2.12)
91
- actionpack (= 3.2.12)
92
- activesupport (= 3.2.12)
89
+ railties (3.2.15)
90
+ actionpack (= 3.2.15)
91
+ activesupport (= 3.2.15)
93
92
  rack-ssl (~> 1.3.2)
94
93
  rake (>= 0.8.7)
95
94
  rdoc (~> 3.4)
@@ -97,7 +96,7 @@ GEM
97
96
  rake (0.9.6)
98
97
  rdoc (3.12.2)
99
98
  json (~> 1.4)
100
- redis (3.0.3)
99
+ redis (3.0.6)
101
100
  redis-namespace (1.2.1)
102
101
  redis (~> 3.0.0)
103
102
  resque (1.23.0)
@@ -116,9 +115,9 @@ GEM
116
115
  multi_json (~> 1.0)
117
116
  rack (~> 1.0)
118
117
  tilt (~> 1.1, != 1.3.0)
119
- thor (0.17.0)
120
- tilt (1.3.4)
121
- treetop (1.4.12)
118
+ thor (0.18.1)
119
+ tilt (1.4.1)
120
+ treetop (1.4.15)
122
121
  polyglot
123
122
  polyglot (>= 0.3.1)
124
123
  tzinfo (0.3.36)
@@ -43,9 +43,9 @@ GIT
43
43
  PATH
44
44
  remote: ../../
45
45
  specs:
46
- redis-kit (0.0.4)
46
+ redis-kit (0.0.5)
47
47
  hiredis (~> 0.4.0)
48
- mock_redis (~> 0.6.0)
48
+ mock_redis (~> 0.10.0)
49
49
  redis (~> 3.0.0)
50
50
 
51
51
  GEM
@@ -71,7 +71,7 @@ GEM
71
71
  method_source (0.8.1)
72
72
  mime-types (1.21)
73
73
  minitest (4.6.2)
74
- mock_redis (0.6.6)
74
+ mock_redis (0.10.0)
75
75
  mono_logger (1.0.1)
76
76
  multi_json (1.7.3)
77
77
  polyglot (0.3.3)
@@ -96,7 +96,7 @@ GEM
96
96
  rake (0.9.6)
97
97
  rdoc (3.12.2)
98
98
  json (~> 1.4)
99
- redis (3.0.4)
99
+ redis (3.0.6)
100
100
  redis-namespace (1.3.0)
101
101
  redis (~> 3.0.0)
102
102
  resque (1.24.1)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redis-kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tyson Tate
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-10-07 00:00:00.000000000 Z
11
+ date: 2013-11-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: redis
@@ -44,14 +44,14 @@ dependencies:
44
44
  requirements:
45
45
  - - ~>
46
46
  - !ruby/object:Gem::Version
47
- version: 0.6.0
47
+ version: 0.10.0
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - ~>
53
53
  - !ruby/object:Gem::Version
54
- version: 0.6.0
54
+ version: 0.10.0
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rake
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -253,3 +253,4 @@ test_files:
253
253
  - test/support/redis.good.yml
254
254
  - test/support/redis.invalid.yml
255
255
  - test/test_helper.rb
256
+ has_rdoc: