redis-kit 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (62) hide show
  1. data/.gitignore +2 -0
  2. data/.travis.yml +17 -0
  3. data/CHANGELOG.md +18 -0
  4. data/Gemfile +3 -0
  5. data/Gemfile.lock +55 -0
  6. data/Guardfile +6 -0
  7. data/Makefile +26 -0
  8. data/README.md +122 -0
  9. data/Rakefile +10 -0
  10. data/lib/redis-kit/railtie.rb +16 -0
  11. data/lib/redis-kit/resque.rb +31 -0
  12. data/lib/redis-kit/version.rb +3 -0
  13. data/lib/redis-kit.rb +92 -0
  14. data/redis-kit.gemspec +28 -0
  15. data/test/railsapi/.gitignore +15 -0
  16. data/test/railsapi/Gemfile.rails_3_2 +14 -0
  17. data/test/railsapi/Gemfile.rails_3_2.lock +139 -0
  18. data/test/railsapi/Gemfile.rails_head +14 -0
  19. data/test/railsapi/Gemfile.rails_head.lock +143 -0
  20. data/test/railsapi/README.rdoc +261 -0
  21. data/test/railsapi/Rakefile +7 -0
  22. data/test/railsapi/app/controllers/application_controller.rb +2 -0
  23. data/test/railsapi/app/controllers/redis_controller.rb +5 -0
  24. data/test/railsapi/app/mailers/.gitkeep +0 -0
  25. data/test/railsapi/app/models/.gitkeep +0 -0
  26. data/test/railsapi/config/application.rb +46 -0
  27. data/test/railsapi/config/boot.rb +6 -0
  28. data/test/railsapi/config/environment.rb +5 -0
  29. data/test/railsapi/config/environments/development.rb +23 -0
  30. data/test/railsapi/config/environments/production.rb +44 -0
  31. data/test/railsapi/config/environments/test.rb +29 -0
  32. data/test/railsapi/config/initializers/wrap_parameters.rb +13 -0
  33. data/test/railsapi/config/locales/en.yml +5 -0
  34. data/test/railsapi/config/redis.mock.yml +2 -0
  35. data/test/railsapi/config/redis.yml +4 -0
  36. data/test/railsapi/config/redis_bad_syntax.yml +2 -0
  37. data/test/railsapi/config/routes.rb +60 -0
  38. data/test/railsapi/config.ru +4 -0
  39. data/test/railsapi/doc/README_FOR_APP +2 -0
  40. data/test/railsapi/lib/assets/.gitkeep +0 -0
  41. data/test/railsapi/lib/tasks/.gitkeep +0 -0
  42. data/test/railsapi/log/.gitkeep +0 -0
  43. data/test/railsapi/public/404.html +26 -0
  44. data/test/railsapi/public/422.html +26 -0
  45. data/test/railsapi/public/500.html +25 -0
  46. data/test/railsapi/public/favicon.ico +0 -0
  47. data/test/railsapi/public/index.html +241 -0
  48. data/test/railsapi/public/robots.txt +5 -0
  49. data/test/railsapi/script/rails +6 -0
  50. data/test/railsapi/test/fixtures/.gitkeep +0 -0
  51. data/test/railsapi/test/functional/.gitkeep +0 -0
  52. data/test/railsapi/test/functional/redis_controller_test.rb +9 -0
  53. data/test/railsapi/test/integration/.gitkeep +0 -0
  54. data/test/railsapi/test/test_helper.rb +63 -0
  55. data/test/railsapi/test/unit/.gitkeep +0 -0
  56. data/test/railsapi/test/unit/redis-kit_test.rb +108 -0
  57. data/test/redis-kit_test.rb +72 -0
  58. data/test/support/redis.blank.yml +0 -0
  59. data/test/support/redis.good.yml +7 -0
  60. data/test/support/redis.invalid.yml +1 -0
  61. data/test/test_helper.rb +33 -0
  62. metadata +266 -0
metadata ADDED
@@ -0,0 +1,266 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: redis-kit
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Tyson Tate
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-03-04 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: redis
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 3.0.0
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 3.0.0
30
+ - !ruby/object:Gem::Dependency
31
+ name: hiredis
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: 0.4.0
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: 0.4.0
46
+ - !ruby/object:Gem::Dependency
47
+ name: mock_redis
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ~>
52
+ - !ruby/object:Gem::Version
53
+ version: 0.6.0
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: 0.6.0
62
+ - !ruby/object:Gem::Dependency
63
+ name: rake
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ - !ruby/object:Gem::Dependency
79
+ name: rb-fsevent
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ type: :development
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ - !ruby/object:Gem::Dependency
95
+ name: guard
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ! '>='
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ type: :development
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ! '>='
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ - !ruby/object:Gem::Dependency
111
+ name: guard-test
112
+ requirement: !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ! '>='
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ! '>='
124
+ - !ruby/object:Gem::Version
125
+ version: '0'
126
+ description: simple redis init for rails projects
127
+ email:
128
+ - tyson@stovepipestudios.com
129
+ executables: []
130
+ extensions: []
131
+ extra_rdoc_files: []
132
+ files:
133
+ - .gitignore
134
+ - .travis.yml
135
+ - CHANGELOG.md
136
+ - Gemfile
137
+ - Gemfile.lock
138
+ - Guardfile
139
+ - Makefile
140
+ - README.md
141
+ - Rakefile
142
+ - lib/redis-kit.rb
143
+ - lib/redis-kit/railtie.rb
144
+ - lib/redis-kit/resque.rb
145
+ - lib/redis-kit/version.rb
146
+ - redis-kit.gemspec
147
+ - test/railsapi/.gitignore
148
+ - test/railsapi/Gemfile.rails_3_2
149
+ - test/railsapi/Gemfile.rails_3_2.lock
150
+ - test/railsapi/Gemfile.rails_head
151
+ - test/railsapi/Gemfile.rails_head.lock
152
+ - test/railsapi/README.rdoc
153
+ - test/railsapi/Rakefile
154
+ - test/railsapi/app/controllers/application_controller.rb
155
+ - test/railsapi/app/controllers/redis_controller.rb
156
+ - test/railsapi/app/mailers/.gitkeep
157
+ - test/railsapi/app/models/.gitkeep
158
+ - test/railsapi/config.ru
159
+ - test/railsapi/config/application.rb
160
+ - test/railsapi/config/boot.rb
161
+ - test/railsapi/config/environment.rb
162
+ - test/railsapi/config/environments/development.rb
163
+ - test/railsapi/config/environments/production.rb
164
+ - test/railsapi/config/environments/test.rb
165
+ - test/railsapi/config/initializers/wrap_parameters.rb
166
+ - test/railsapi/config/locales/en.yml
167
+ - test/railsapi/config/redis.mock.yml
168
+ - test/railsapi/config/redis.yml
169
+ - test/railsapi/config/redis_bad_syntax.yml
170
+ - test/railsapi/config/routes.rb
171
+ - test/railsapi/doc/README_FOR_APP
172
+ - test/railsapi/lib/assets/.gitkeep
173
+ - test/railsapi/lib/tasks/.gitkeep
174
+ - test/railsapi/log/.gitkeep
175
+ - test/railsapi/public/404.html
176
+ - test/railsapi/public/422.html
177
+ - test/railsapi/public/500.html
178
+ - test/railsapi/public/favicon.ico
179
+ - test/railsapi/public/index.html
180
+ - test/railsapi/public/robots.txt
181
+ - test/railsapi/script/rails
182
+ - test/railsapi/test/fixtures/.gitkeep
183
+ - test/railsapi/test/functional/.gitkeep
184
+ - test/railsapi/test/functional/redis_controller_test.rb
185
+ - test/railsapi/test/integration/.gitkeep
186
+ - test/railsapi/test/test_helper.rb
187
+ - test/railsapi/test/unit/.gitkeep
188
+ - test/railsapi/test/unit/redis-kit_test.rb
189
+ - test/redis-kit_test.rb
190
+ - test/support/redis.blank.yml
191
+ - test/support/redis.good.yml
192
+ - test/support/redis.invalid.yml
193
+ - test/test_helper.rb
194
+ homepage: http://github.com/stvp/redis-kit-rb
195
+ licenses: []
196
+ post_install_message:
197
+ rdoc_options: []
198
+ require_paths:
199
+ - lib
200
+ required_ruby_version: !ruby/object:Gem::Requirement
201
+ none: false
202
+ requirements:
203
+ - - ! '>='
204
+ - !ruby/object:Gem::Version
205
+ version: '0'
206
+ required_rubygems_version: !ruby/object:Gem::Requirement
207
+ none: false
208
+ requirements:
209
+ - - ! '>='
210
+ - !ruby/object:Gem::Version
211
+ version: '0'
212
+ requirements: []
213
+ rubyforge_project: redis-kit
214
+ rubygems_version: 1.8.23
215
+ signing_key:
216
+ specification_version: 3
217
+ summary: simple redis init
218
+ test_files:
219
+ - test/railsapi/.gitignore
220
+ - test/railsapi/Gemfile.rails_3_2
221
+ - test/railsapi/Gemfile.rails_3_2.lock
222
+ - test/railsapi/Gemfile.rails_head
223
+ - test/railsapi/Gemfile.rails_head.lock
224
+ - test/railsapi/README.rdoc
225
+ - test/railsapi/Rakefile
226
+ - test/railsapi/app/controllers/application_controller.rb
227
+ - test/railsapi/app/controllers/redis_controller.rb
228
+ - test/railsapi/app/mailers/.gitkeep
229
+ - test/railsapi/app/models/.gitkeep
230
+ - test/railsapi/config.ru
231
+ - test/railsapi/config/application.rb
232
+ - test/railsapi/config/boot.rb
233
+ - test/railsapi/config/environment.rb
234
+ - test/railsapi/config/environments/development.rb
235
+ - test/railsapi/config/environments/production.rb
236
+ - test/railsapi/config/environments/test.rb
237
+ - test/railsapi/config/initializers/wrap_parameters.rb
238
+ - test/railsapi/config/locales/en.yml
239
+ - test/railsapi/config/redis.mock.yml
240
+ - test/railsapi/config/redis.yml
241
+ - test/railsapi/config/redis_bad_syntax.yml
242
+ - test/railsapi/config/routes.rb
243
+ - test/railsapi/doc/README_FOR_APP
244
+ - test/railsapi/lib/assets/.gitkeep
245
+ - test/railsapi/lib/tasks/.gitkeep
246
+ - test/railsapi/log/.gitkeep
247
+ - test/railsapi/public/404.html
248
+ - test/railsapi/public/422.html
249
+ - test/railsapi/public/500.html
250
+ - test/railsapi/public/favicon.ico
251
+ - test/railsapi/public/index.html
252
+ - test/railsapi/public/robots.txt
253
+ - test/railsapi/script/rails
254
+ - test/railsapi/test/fixtures/.gitkeep
255
+ - test/railsapi/test/functional/.gitkeep
256
+ - test/railsapi/test/functional/redis_controller_test.rb
257
+ - test/railsapi/test/integration/.gitkeep
258
+ - test/railsapi/test/test_helper.rb
259
+ - test/railsapi/test/unit/.gitkeep
260
+ - test/railsapi/test/unit/redis-kit_test.rb
261
+ - test/redis-kit_test.rb
262
+ - test/support/redis.blank.yml
263
+ - test/support/redis.good.yml
264
+ - test/support/redis.invalid.yml
265
+ - test/test_helper.rb
266
+ has_rdoc: