redis-actionpack-json 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (73) hide show
  1. data/.gitignore +15 -0
  2. data/.travis.yml +7 -0
  3. data/CHANGELOG +450 -0
  4. data/README.md +23 -0
  5. data/redis-actionpack-json/.gitignore +4 -0
  6. data/redis-actionpack-json/Gemfile +6 -0
  7. data/redis-actionpack-json/MIT-LICENSE +20 -0
  8. data/redis-actionpack-json/Rakefile +8 -0
  9. data/redis-actionpack-json/lib/action_dispatch/middleware/session/redis_store_json.rb +24 -0
  10. data/redis-actionpack-json/lib/redis-actionpack-json.rb +4 -0
  11. data/redis-actionpack-json/lib/redis/actionpack/version.rb +5 -0
  12. data/redis-actionpack-json/redis-actionpack-json.gemspec +32 -0
  13. data/redis-actionpack-json/test/dummy/.gitignore +1 -0
  14. data/redis-actionpack-json/test/dummy/Rakefile +7 -0
  15. data/redis-actionpack-json/test/dummy/app/controllers/test_controller.rb +37 -0
  16. data/redis-actionpack-json/test/dummy/config.ru +4 -0
  17. data/redis-actionpack-json/test/dummy/config/application.rb +29 -0
  18. data/redis-actionpack-json/test/dummy/config/boot.rb +10 -0
  19. data/redis-actionpack-json/test/dummy/config/environment.rb +5 -0
  20. data/redis-actionpack-json/test/dummy/config/initializers/secret_token.rb +7 -0
  21. data/redis-actionpack-json/test/dummy/config/initializers/session_store.rb +11 -0
  22. data/redis-actionpack-json/test/dummy/config/routes.rb +3 -0
  23. data/redis-actionpack-json/test/dummy/script/rails +6 -0
  24. data/redis-actionpack-json/test/fixtures/session_autoload_test/session_autoload_test/foo.rb +10 -0
  25. data/redis-actionpack-json/test/integration/redis_store_integration_test.rb +130 -0
  26. data/redis-actionpack-json/test/integration/redis_store_json_integration_test.rb +130 -0
  27. data/redis-actionpack-json/test/redis/actionpack/version_test.rb +7 -0
  28. data/redis-actionpack-json/test/test_helper.rb +23 -0
  29. data/redis-rack-json/.gitignore +5 -0
  30. data/redis-rack-json/Gemfile +5 -0
  31. data/redis-rack-json/MIT-LICENSE +20 -0
  32. data/redis-rack-json/Rakefile +8 -0
  33. data/redis-rack-json/lib/rack/session/redis.rb +69 -0
  34. data/redis-rack-json/lib/redis-rack-json.rb +3 -0
  35. data/redis-rack-json/lib/redis/rack/version.rb +6 -0
  36. data/redis-rack-json/redis-rack-json.gemspec +29 -0
  37. data/redis-rack-json/test/rack/session/redis_test.rb +289 -0
  38. data/redis-rack-json/test/redis/rack/version_test.rb +7 -0
  39. data/redis-rack-json/test/test_helper.rb +7 -0
  40. data/redis-store-json/Gemfile +4 -0
  41. data/redis-store-json/MIT-LICENSE +20 -0
  42. data/redis-store-json/Rakefile +7 -0
  43. data/redis-store-json/lib/redis-store-json.rb +11 -0
  44. data/redis-store-json/lib/redis/distributed_store.rb +46 -0
  45. data/redis-store-json/lib/redis/factory.rb +41 -0
  46. data/redis-store-json/lib/redis/store.rb +47 -0
  47. data/redis-store-json/lib/redis/store/interface.rb +21 -0
  48. data/redis-store-json/lib/redis/store/namespace.rb +66 -0
  49. data/redis-store-json/lib/redis/store/strategy.rb +60 -0
  50. data/redis-store-json/lib/redis/store/strategy/json.rb +49 -0
  51. data/redis-store-json/lib/redis/store/strategy/json_session.rb +67 -0
  52. data/redis-store-json/lib/redis/store/strategy/marshal.rb +16 -0
  53. data/redis-store-json/lib/redis/store/strategy/yaml.rb +16 -0
  54. data/redis-store-json/lib/redis/store/ttl.rb +37 -0
  55. data/redis-store-json/lib/redis/store/version.rb +5 -0
  56. data/redis-store-json/lib/tasks/redis.tasks.rb +167 -0
  57. data/redis-store-json/redis-store-json.gemspec +29 -0
  58. data/redis-store-json/test/config/node-one.conf +46 -0
  59. data/redis-store-json/test/config/node-two.conf +46 -0
  60. data/redis-store-json/test/config/redis.conf +46 -0
  61. data/redis-store-json/test/redis/distributed_store_test.rb +53 -0
  62. data/redis-store-json/test/redis/factory_test.rb +120 -0
  63. data/redis-store-json/test/redis/store/interface_test.rb +27 -0
  64. data/redis-store-json/test/redis/store/namespace_test.rb +103 -0
  65. data/redis-store-json/test/redis/store/strategy/json_session_test.rb +160 -0
  66. data/redis-store-json/test/redis/store/strategy/json_test.rb +108 -0
  67. data/redis-store-json/test/redis/store/strategy/marshal_test.rb +121 -0
  68. data/redis-store-json/test/redis/store/strategy/yaml_test.rb +105 -0
  69. data/redis-store-json/test/redis/store/ttl_test.rb +107 -0
  70. data/redis-store-json/test/redis/store/version_test.rb +7 -0
  71. data/redis-store-json/test/redis/store_test.rb +45 -0
  72. data/redis-store-json/test/test_helper.rb +22 -0
  73. metadata +279 -0
@@ -0,0 +1,15 @@
1
+ *.rdb
2
+ *.swp
3
+ *.gem
4
+ *-redis-store.gemspec
5
+ tags
6
+ bin/
7
+ .bin/
8
+ coverage/
9
+ pkg/
10
+ vendor/
11
+ tmp/
12
+ .idea
13
+ .bundle/
14
+ Gemfile.lock
15
+ .rvmrc
@@ -0,0 +1,7 @@
1
+ before_install: gem install bundler
2
+ script: 'ci/run.rb'
3
+ rvm:
4
+ - 1.8.7
5
+ - 1.9.3
6
+ - rbx
7
+ bundler_args: '--path vendor/bundle'
@@ -0,0 +1,450 @@
1
+ *1.1.3 (October 6, 2012)*
2
+
3
+ * Bump version v1.1.3
4
+ * Invoke namespaced commands only when keys are present.
5
+
6
+ *1.1.2 (September 4, 2012)*
7
+
8
+ * Bump version v1.1.2 [Matt Horan]
9
+ * Override flushdb for namespaced datastore [Gregory Marcilhacy]
10
+
11
+ *1.1.1 (June 26, 2012)*
12
+
13
+ * Bump version v1.1.1
14
+ * README, CHANGELOG
15
+ * Bumped redis-sinatra 1.3.3
16
+ * Bumped redis-rack 1.4.2
17
+ * Bumped redis-i18n 0.6.1
18
+ * Relaxing dependencies
19
+ * Relax requirement on redis (use >= 2.2.0)
20
+ Because resque still depends on redis 2.x and sidekiq on redis 3.x,
21
+ using >= 2.2.0 instead of ~> 3.0.0 allows compatibility with both. [Lukas Westermann]
22
+ * Use default value for port, otherwise factory_test.rb:65 fails (port = 0) [Lukas Westermann]
23
+ * Use redis 3.x [Lukas Westermann]
24
+ * Adding examples for rails cache store config with URLs [aliix]
25
+ * Bumped redis-rack-cache 1.2
26
+ * Bump: [Matt Horan]
27
+ - redis-rails 3.2.3
28
+ - redis-actionpack 3.2.3
29
+ - redis-activesupport 3.2.3
30
+ * Loosen actionpack version requirement for possible Rails 3.2.3 compatibility [Filip Tepper]
31
+ * Add Rails 3.2.2 support for redis-actionpack, redis-activesupport, redis-rails [Jack Chu]
32
+ * Bumped redis-rack 1.4.1
33
+ * Bumped:
34
+ - redis-rack 1.4.0
35
+ - redis-activesupport 3.2.1
36
+ - redis-actionpack 3.2.1
37
+ - redis-rails 3.2.1
38
+ * Bump redis-sinatra 1.3.2
39
+
40
+ *1.1.0 (February 14, 2012)*
41
+
42
+ * Bump version v1.1.0
43
+ * Prepare stable releases
44
+ - redis-store 1.1.0
45
+ - redis-actionpack 3.1.3
46
+ - redis-activesupport 3.1.3
47
+ - redis-i18n 0.6.0
48
+ - redis-rack-cache 1.1
49
+ - redis-rack 1.3.5
50
+ - redis-rails 3.1.3
51
+ - redis-sinatra 1.3.1
52
+ * Replace minitest-rails with mini_specunit [Matt Horan]
53
+ * Bumped: [Matt Horan]
54
+ - redis-actionpack 3.1.3.rc4
55
+ - redis-activesupport 3.1.3.rc2
56
+ - redis-i18n 0.6.0.rc2
57
+ - redis-rack-cache 1.1.rc3
58
+ - redis-rails 3.1.3.rc4
59
+ - redis-sinatra 1.3.1.rc2
60
+ * Remove redis-actionpack dependency on redis-rack-cache [Matt Horan]
61
+
62
+ *1.1.0 [rc2] (February 3, 2012)*
63
+
64
+ * Bump version v1.1.0.rc2
65
+ * Bumped: [Matt Horan]
66
+ - redis-store 1.1.0.rc2
67
+ - redis-actionpack 3.1.3.rc3
68
+ - redis-rails 3.1.3.rc3
69
+ * README, CHANGELOG
70
+ * Don't clobber :redis_server if provided to ActionDispatch::Session::RedisStore [Matt Horan]
71
+ * Support :servers option to ActionDispatch::Session::RedisStore [Matt Horan]
72
+ * Add missing assertions [Matt Horan]
73
+ * Integrate against a distributed Redis store [Matt Horan]
74
+ * Remove duplicated logic for merging default Redis server with options [Matt Horan]
75
+ * Rename ActionDispatch::Session::RedisSessionStore to RedisStore in keeping with documentation and MemCacheStore [Matt Horan]
76
+ * Test auto-load of unloaded class [Matt Horan]
77
+ * Replace assert_response with must_be [Matt Horan]
78
+ * Pending upstream fix [Matt Horan]
79
+ * Additional tests for rack-actionpack, borrowed from MemCacheStoreTest [Matt Horan]
80
+ * Test redis-actionpack with dummy Rails application [Matt Horan]
81
+ * Use Rack::Session::Redis API in RedisSessionStore [Matt Horan]
82
+ * Quiet warnings [Matt Horan]
83
+ * Remove superfluous tests [Matt Horan]
84
+ * Cleanup Redis::Store::Ttl setnx and set tests with help from @mike-burns [Matt Horan]
85
+ * Verify Ttl#setnx sets raw => true if expiry is provided [Matt Horan]
86
+ * Fix redis-rack spec [Matt Horan]
87
+ * Previous fix for double marshal just disabled expiry. Instead, call setnx from Ttl module with :raw => true so that Marshal.dump [Matt Horan]
88
+ * Test and fix for double marshal [Matt Horan]
89
+ * Cleanup Redis::Store::Ttl spec [Matt Horan]
90
+ * Fix Redis::Rack version require [Matt Horan]
91
+ * Redis::Store::Ttl extends Redis#set with TTL support [Matt Horan]
92
+ * Specs for Redis::Store::Ttl [Matt Horan]
93
+ * Bumped:
94
+ - redis-rack-cache 1.1.rc2
95
+ - redis-actionpack 3.1.3.rc2
96
+ - redis-rails 3.1.3.rc2
97
+ * Ensure TTL is an integer - Rails cache returns a float when used with race_condition_ttl [Matt Williams]
98
+
99
+ *1.1.0 [rc] (December 30, 2011)*
100
+
101
+ * Bump version v1.1.0.rc
102
+ * Prepare RCs
103
+ * redis-store 1.1.0.rc
104
+ * CHANGELOG
105
+ * Use strict dependencies.
106
+ * READMEs and Licenses
107
+ * redis-actionpack now depends on redis-rack-cache
108
+ * Redis::Factory.convert_to_redis_client_options => Redis::Factory.resolve.
109
+ * Don't use autoload
110
+ * Make redis-rack-cache tests to pass again
111
+ * Target Rack::Cache 1.1 for redis-rack-cache
112
+ * Target Rack 1.4.0 for redis-rack
113
+ * Gemspecs, dependencies and versions
114
+ * Make redis-rails tests to pass again
115
+ * redis-actionpack dependencies
116
+ * redis-activesupport dependencies
117
+ * Fix for redis-rack tests
118
+ * Fix for redis-activesupport tests
119
+ * Make redis-sinatra tests to pass again
120
+ * Make redis-actionpack tests to pass again
121
+ * Install bundler 1.1 RC on travis-ci.org [Michael Klishin]
122
+ * Make redis-rack tests to pass again
123
+ * Added SETEX support to Interface and Marshalling
124
+ * Make redis-i18n tests to pass again
125
+ * Make redis-activesupport tests to pass again
126
+ * More tests for redis-store core
127
+ * Redis::Factory is created with general options and not the redis_server [Julien Kirch]
128
+ * Moved README.md
129
+ * Split gems in subdirectories
130
+ * Moved everything under redis-store
131
+ * Use bundler 1.1.rc
132
+ * Better Ruby idiom on File.expand_path
133
+ * Moved Rake test tasks into lib/tasks/redis.tasks.rb, in order to DRY Rake
134
+ * Testing: Use relative paths when referring to pid files
135
+ * Autoload modules
136
+ * Moved Rake test tasks under lib/ in order to make them accessible to all
137
+ * Let the Redis::DistributedStore test to pass
138
+ * Let Redis Rake tasks to work again
139
+ * Run tests without dtach
140
+ * Switch from RSpec to MiniTest::Unit
141
+ * Removed all the references to Rails, Merb, Sinatra, Rack, i18n, Rack::Session and Rack::Cache
142
+ * Gemfile is now depending on the gemspec. Removed Jewler.
143
+
144
+ *1.0.0 (September 1, 2011)*
145
+
146
+ * Bump version v1.0.0
147
+ * Avoid encoding issues when sending strings to Redis. [Damian Janowski]
148
+ * Fixed a bug that caused all the users to share the same session (with a session_id of 0 or 1) [Mathieu Ravaux]
149
+ * ActiveSupport cache stores reply to read_multi with a hash, not an array. [Matt Griffin]
150
+ * Rack::Session && Rack::Cache store can be created with options [aligo]
151
+ * add destroy_session [aligo]
152
+ * compatible with rails 3.1. rely on Rack::Session::Redis stores API. [aligo]
153
+ * Fixed Marshalling semantic
154
+
155
+ *1.0.0 [rc1] (June 5, 2011)*
156
+
157
+ * Bump version v1.0.0.rc1
158
+ * Re-implement the delete_entry because it s needed by the ActiveSupport::Cache [Cyril Mougel]
159
+ * Change readme documentation for rack-cache to use single redis database with namespace support per Redis maintainers recommendation [Travis D. Warlick, Jr.]
160
+ * Rack-Cache entity and meta store base classes should use the Redis::Factory.convert_to_redis_client_options method for DRYness and for namespace support [Travis D. Warlick, Jr.]
161
+ * Modify #fetch for cache stores to return the yielded value instead of OK [Rune Botten]
162
+ * Minor revisions to Readme language and organization [Jeff Casimir]
163
+ * Re-implement the delete_entry because it s needed by the ActiveSupport::Cache implementation in Rails 3 [Cyril Mougel]
164
+ * Refactor delete_matched [Andrei Kulakov]
165
+
166
+ *1.0.0 [beta5] (April 2, 2011)*
167
+
168
+ * Bump version v1.0.0.beta5
169
+ * Introducing Rails.cache.reconnect, useful for Unicorn environments. Closes #21
170
+ * Namespaced i18n backend should strip namespace when lists available locales. Closes #62
171
+ * how to configure Redis session store in Sinatra [Christian von Kleist]
172
+ * gracefully handle Connection Refused errors, allows database fall-back on fetch [Michael Kintzer]
173
+ * Sinatra's API must have changed, its registered not register. [Michael D'Auria]
174
+
175
+ *1.0.0 [beta4] (December 15, 2010)*
176
+
177
+ * Bump version v1.0.0.beta4
178
+ * Force Rails cache store when ActiveSupport is detected
179
+ * Make sure to accept options when :servers isn't passed
180
+ * Always force session store loading when using Rails
181
+ * Make it compatible with Rails 3 sessions store [Andre Medeiros]
182
+ * Better Rails 3 detection [Andre Medeiros]
183
+ * Added support for password in Redis URI resolution [Jacob Gyllenstierna]
184
+ * fix deleting values from session hash [Calvin Yu]
185
+ * Use defensive design when build options for a store
186
+ * ActiveSupport cache store doesn't accept any argument in Rails 2
187
+ * Updated dependencies
188
+
189
+ *1.0.0 [beta3] (September 10, 2010)*
190
+
191
+ * Bump version v1.0.0.beta3
192
+ * Updated gemspec
193
+ * Made compatible with Ruby 1.9.2
194
+ * Made compatible with Rails 3
195
+ * Making the redis-store rails session store compatible with Rails 2.3.9. [Aaron Gibralter]
196
+ * Updated to v2.3.9 the development dependencies for Rails 2.x
197
+ * Added password support
198
+ * Set default URI string for Rack session store according to redis gem
199
+ * Require redis:// scheme as mandatory part of URI string
200
+ * Updated locked dependencies
201
+ * Added namespace support for Redis::DistrubutedStore
202
+ * Specs for Interface module
203
+ * Moved a spec to reflect lib/ structure
204
+ * Made specs run again with bundler-1.0.0.rc.2
205
+ * Prepare for bundler-1.0.0.rc.1
206
+ * Use tmp/ for Redis database dumps
207
+ * README, gemspec
208
+ * Lookup for scoped keys
209
+ * Introducing I18n::Backend::Redis
210
+ * Don't pollute Redis namespace. closes #16
211
+ * Don't look twice for Rails module
212
+ * Fixed loading ActionDispatch::Session issue with Rails 3
213
+ * ActiveSupport cache now uses new Rails 3 namespace API
214
+ * Let Rack::Cache entity store to use plain Redis client
215
+ * CHANGELOG
216
+ * Gemspec
217
+ * Redis::DistributedMarshaled => Redis::DistributedStore
218
+ * Extracted expiration logic in Redis::Ttl
219
+ * Introducing Redis::Store and extracted marshalling logic into Redis::Marshalling
220
+ * CHANGELOG
221
+ * Gemspec
222
+ * Removed superfluous specs. Documentation.
223
+ * Made the specs pass with Ruby 1.9.2 and Rails 3
224
+ * Made the specs pass with Ruby 1.9.2
225
+ * Prepare specs for Ruby 1.9.2
226
+ * Made the specs pass for Rails 3
227
+ * Namespaced keys for ActiveSupport::Cache::RedisStore
228
+ * Got RedisSessionStore working again with namespace
229
+ * Delegate MarshaledClient#to_s decoration to Redis::Namespace
230
+ * Redis::Namespace
231
+ * Accept :namespace option when instantiate a store
232
+ * Test against merb-1.1.0 for now
233
+ * Updated Rake tasks for Redis installation
234
+ * Advanced configurations for Rails in README. closes #8
235
+ * Locked gems
236
+ * Changed the gemspec according to the new directories structure
237
+ * Changed directories structure, according to the ActiveSupport loading policies
238
+ * Typo in CHANGELOG
239
+
240
+ *1.0.0 [beta2] (June 12, 2010)*
241
+
242
+ * Bump version v1.0.0.beta2
243
+ * Added committers names to CHANGELOG
244
+ * Added CHANGELOG
245
+ * Rake namespace: redis_cluster => redis:cluster
246
+ * Fixed Rails 3 failing spec
247
+ * Added ActiveSupport::Cache::RedisStore#read_multi
248
+ * Enabled notifications for ActiveSupport::Cache::RedisStore
249
+ * Moved spec
250
+ * Use consistent Rails 3 check in session store
251
+ * Make sure of use top-level module
252
+ * Updated Rails 2.x development dependencies
253
+
254
+ *1.0.0 [beta1] (June 9, 2010)*
255
+
256
+ * Bump version v1.0.0.beta1
257
+ * Made specs pass for Ruby 1.9.1
258
+ * Updated instructions to test against Rails 3.x
259
+ * Updated copyright year
260
+ * Prepare for v1.0.0.beta1
261
+ * Use Rails v3.0.0.beta4
262
+ * Require redis >= 2.0.0 gem in Gemfile
263
+ * Updated instructions for Rails 2 session store
264
+ * Added instructions for Rails 3 configuration
265
+ * Check against Rails#version instead of Rails::VERSION::STRING
266
+ * Added redis gem as dependency
267
+ * Changed spec_helper.rb according to the new Rails 3 check
268
+ * Fix the rails3 check [Bruno Michel]
269
+ * Added bundler cleanup Rake task
270
+ * Fixed ActiveSupport::Cache::RedisStore#fetch
271
+ * Re-enabled redis:console Rake task
272
+ * Don't use Rspec#have with ActiveSupport 3
273
+ * Fixed Rails 2 regression for ActiveSupport::Cache::RedisStore#delete_matched
274
+ * Fixed issues for ActiveSupport::Cache::RedisStore #delete_matched, #read, #rwrite
275
+ * Rails 3 namespace
276
+ * Use Rails edge instead of 3.0.0.beta3
277
+ * Made the specs run again
278
+ * Updated Gemfile development/test dependencies for rails3.
279
+ * Updated README instructions
280
+ * Updated test configuration files, according to redis-2.0.0-rc1 defaults
281
+ * Made specs pass with redis-2.0.0 gem
282
+ * Don't support the old redis-rb namespace
283
+ * Import the whole redis-rb old Rake tasks
284
+ * Updated redis-rb dependency
285
+
286
+ *0.3.8 [Final] (May 21, 2010)*
287
+
288
+ * Fixed gemspec executable issue
289
+ * Updated .gemspec
290
+ * Version bump to 0.3.8
291
+ * Started namespace migration for redis-2.0.0
292
+ * Merge branch 'master' of http://github.com/akahn/redis-store
293
+ * Fixed dependency issues. [Brian Takita]
294
+ * Removed methopara because it require ruby 1.9.1. [Brian Takita]
295
+ * Merge branch 'master' of http://github.com/dsander/redis-store [Brian Takita]
296
+ * Moved RedisSessionStore to rack session directory. [Brian Takita]
297
+ * Got RedisSessionStore working with passing specs. [Brian Takita]
298
+ * Using modified version of RedisSessionStore (http://github.com/mattmatt/redis-session-store). Still needs testing. [Brian Takita]
299
+ * Using redis 1.0.5. [Brian Takita]
300
+ * Ignoring gem files and gemspecs with a prefix. [Brian Takita]
301
+ * Added git and jeweler to dependencies. [Brian Takita]
302
+ * Ignoring .bundle and rubymine files. [Brian Takita]
303
+ * Added ability to add a prefix to the gem name via the GEM_PREFIX environment variable. [Brian Takita]
304
+ * Fixed marshalling issues with the new Redis api. Fixed redis-server configurations for the latest version of redis-server. Added redis_cluster:start and redis_cluster:stop rake tasks. Spec suite passes. [Brian Takita]
305
+ * Fixed redis deprecation warnings. [Brian Takita]
306
+ * Using redis 1.0.4. Loading redis.tasks.rb from redis gem using Bundler. Fixed redis test configurations. [Brian Takita]
307
+ * Supports redis 1.0.5 [Dominik Sander]
308
+ * Add Rack::Session::Redis usage for Sinatra to README [Alexander Kahn]
309
+ * Updated development and testing dependencies
310
+ * Made compatible with rack-cache-0.5.2
311
+
312
+ *0.3.7 [Final] (November 15, 2009)*
313
+
314
+ * Version bump to 0.3.7
315
+ * Version bump to 0.3.7
316
+ * Updated spec instructions in README
317
+ * Jeweler generated redis-store.gemspec
318
+ * Removed no longer used Rake tasks. Added Gemcutter support via Jeweler.
319
+ * Typo
320
+ * Let Rcov task run with the Redis cluster started
321
+ * Make spec suite pass again
322
+ * README.textile -> README.md
323
+ * Re-enabled Merb specs
324
+ * Added *.rdb in .gitignore
325
+ * Run detached Redis instances for spec suite
326
+ * Start detached Redis server for specs
327
+ * Added Gemfile, removed rubygems dependecy for testing.
328
+ * Added *.swp to .gitignore
329
+ * Added jeweler rake tasks
330
+ * Make it work in classic Sinatra apps. [Dmitriy Timokhin]
331
+ * Updated README with new instructions about redis-rb
332
+
333
+ *0.3.6 [Final] (June 18, 2009)*
334
+
335
+ * Prepare for v0.3.6
336
+ * Updated README with new version
337
+ * Changed Redis config files for specs
338
+ * Updated README instructions
339
+ * New filelist in gemspec
340
+ * Fixed typo in spec
341
+ * Don't try to unmarshal empty strings
342
+ * Running specs according to the DEBUG env var
343
+ * Added specs for uncovered Merb Cache API
344
+ * Added rcov Rake task
345
+ * Fix README
346
+ * Fix typo in README
347
+ * Updated README instructions
348
+ * Removed RedisError catching
349
+ * Declaring for now RedisError in spec_helper.rb
350
+ * Removed unnecessary classes
351
+ * Fix specs for DistributedMarshaledRedis
352
+ * Fix some specs
353
+ * Made Server#notify_observers private
354
+ * Ensure to select the correct database after the socket connection
355
+ * Reverted socket pooling. Ensure to always return an active socket.
356
+ * Lowering default timeout from 10 to 0.1
357
+
358
+ *0.3.5 [Final] (May 7, 2009)*
359
+
360
+ * Prepare for v0.3.5
361
+ * Totally replace ezmobius-redis-rb Server implementation
362
+ * Fixed default Server timeout to 1 second
363
+ * Little refactoring
364
+ * Ensure Server#active? always returns a boolean and never raise an exception
365
+ * Made configurable connection pool timeout and size
366
+ * Socket connection pooling
367
+ * Updated README
368
+
369
+ *0.3.0 [Final] (May 3, 2009)*
370
+
371
+ * Prepare for v0.3.0
372
+ * README formatting issues
373
+ * README formatting (again)
374
+ * README formatting
375
+ * Updated Rack::Session instructions for Sinatra
376
+ * Make Rack::Session implementation working with Merb
377
+ * Added instructions for Rack::Session
378
+ * Expiration support for Rack::Session
379
+ * Ensure to test Rails and Sinatra expiration implementations with both MarshaledRedis and DistrbutedMarshaledRedis
380
+ * Expiration support for Merb::Cache
381
+ * Use full qualified class names in specs. Minor spec fix.
382
+ * Ported for foreword compatibility the expiration implementation from ezmobius/redis-rb
383
+ * Little spec cleanup
384
+ * Full support for Rack::Session
385
+ * Extracted some logic into RedisFactory
386
+ * Initial support for Rack::Session
387
+
388
+ *0.2.0 [Final] (April 30, 2009)*
389
+
390
+ * Prepare for v0.2.0
391
+ * Links in README
392
+ * Maybe someday I will use the right formatting rules at first attempt
393
+ * Still formatting README
394
+ * Formatting for README
395
+ * Updated instructions for Rack::Cache
396
+ * Don't require any cache store if no Ruby framework is detected
397
+ * Implemented EntityStore for Rack::Cache
398
+ * Added REDIS constant for Rack::Cache::Metastore
399
+ * MetaStore implementation for Rack::Cache
400
+
401
+ *0.1.0 [Final] (April 30, 2009)*
402
+
403
+ * Prepare for v0.1.0
404
+ * Sinatra cache support
405
+
406
+ *0.0.3 [Final] (April 30, 2009)*
407
+
408
+ * Prepare for v0.0.3
409
+ * Updated instructions for Merb
410
+ * Hack for Merb cyclic dependency
411
+ * Renaming main lib
412
+ * Merb store #writable always returns true. Added pending test.
413
+ * Merb store #fetch refactoring
414
+ * Updated Redis installation instructions
415
+ * Implemented #fetch for Merb store
416
+ * Implemented #exists?, #delete and #delete_all for Merb cache store
417
+ * Renamed project name in Rakefile
418
+ * Updated project name in README
419
+ * Updated README with Merb instructions
420
+ * Changed name in gemspec
421
+ * New gemspec
422
+ * Initial cache store support for Merb
423
+ * Moving files around
424
+ * Don't complain about missing db in tmp/
425
+
426
+ *0.0.2 [Final] (April 16, 2009)*
427
+
428
+ * Prepare for v0.0.2
429
+ * Updated file list in gemspec
430
+ * Updated README instructions
431
+ * Re-enabled spec for RedisStore#fetch
432
+ * Update rdoc
433
+ * Fix RedisStore#clear when use a cluster
434
+ * Test RedisStore both with single server and with a cluster
435
+ * Fix port in DistributedMarshaledRedis spec
436
+ * Don't slave Redis cluster node
437
+ * Changed Redis cluster configuration
438
+ * Added configuration for Redis cluster
439
+ * Use a distributed system if the store uses more than one server
440
+ * Accept params for client connection
441
+
442
+ *0.0.1 [Final] (April 11, 2009)*
443
+
444
+ * Added :unless_exist option to #write
445
+ * Added failing specs for :expires_in option
446
+ * Made optional args compatible with the Cache interface
447
+ * Implemented #delete_matched, #clear, #stats
448
+ * Implemented #delete, #exist?, #increment, #decrement
449
+ * Introduced RedisStore
450
+ * Initial import