nono-redis-store 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. data/.gitignore +11 -0
  2. data/CHANGELOG +262 -0
  3. data/Gemfile +33 -0
  4. data/Gemfile.lock +194 -0
  5. data/MIT-LICENSE +20 -0
  6. data/README.md +191 -0
  7. data/Rakefile +60 -0
  8. data/VERSION +1 -0
  9. data/lib/action_controller/session/redis_session_store.rb +74 -0
  10. data/lib/active_support/cache/redis_store.rb +228 -0
  11. data/lib/cache/merb/redis_store.rb +75 -0
  12. data/lib/cache/sinatra/redis_store.rb +126 -0
  13. data/lib/i18n/backend/redis.rb +67 -0
  14. data/lib/rack/cache/redis_entitystore.rb +51 -0
  15. data/lib/rack/cache/redis_metastore.rb +42 -0
  16. data/lib/rack/session/merb.rb +32 -0
  17. data/lib/rack/session/redis.rb +81 -0
  18. data/lib/redis-store.rb +44 -0
  19. data/lib/redis/distributed_store.rb +35 -0
  20. data/lib/redis/factory.rb +46 -0
  21. data/lib/redis/store.rb +30 -0
  22. data/lib/redis/store/interface.rb +17 -0
  23. data/lib/redis/store/marshalling.rb +41 -0
  24. data/lib/redis/store/namespace.rb +54 -0
  25. data/lib/redis/store/ttl.rb +37 -0
  26. data/lib/redis/store/version.rb +11 -0
  27. data/redis-store.gemspec +103 -0
  28. data/spec/action_controller/session/redis_session_store_spec.rb +121 -0
  29. data/spec/active_support/cache/redis_store_spec.rb +405 -0
  30. data/spec/cache/merb/redis_store_spec.rb +143 -0
  31. data/spec/cache/sinatra/redis_store_spec.rb +192 -0
  32. data/spec/config/master.conf +312 -0
  33. data/spec/config/single.conf +312 -0
  34. data/spec/config/slave.conf +312 -0
  35. data/spec/i18n/backend/redis_spec.rb +56 -0
  36. data/spec/rack/cache/entitystore/pony.jpg +0 -0
  37. data/spec/rack/cache/entitystore/redis_spec.rb +120 -0
  38. data/spec/rack/cache/metastore/redis_spec.rb +255 -0
  39. data/spec/rack/session/redis_spec.rb +234 -0
  40. data/spec/redis/distributed_store_spec.rb +47 -0
  41. data/spec/redis/factory_spec.rb +110 -0
  42. data/spec/redis/store/interface_spec.rb +23 -0
  43. data/spec/redis/store/marshalling_spec.rb +83 -0
  44. data/spec/redis/store/namespace_spec.rb +76 -0
  45. data/spec/redis/store/version_spec.rb +7 -0
  46. data/spec/spec_helper.rb +43 -0
  47. data/tasks/redis.tasks.rb +220 -0
  48. metadata +141 -0
@@ -0,0 +1,11 @@
1
+ *.rdb
2
+ *.swp
3
+ *.gem
4
+ *-redis-store.gemspec
5
+ bin/
6
+ coverage/
7
+ pkg/
8
+ vendor/
9
+ tmp/
10
+ .idea
11
+ .bundle/
@@ -0,0 +1,262 @@
1
+ *1.0.0 [beta3] (September 10, 2010)*
2
+
3
+ * Bump version v1.0.0.beta3
4
+ * Updated gemspec
5
+ * Made compatible with Ruby 1.9.2
6
+ * Made compatible with Rails 3
7
+ * Making the redis-store rails session store compatible with Rails 2.3.9. [Aaron Gibralter]
8
+ * Updated to v2.3.9 the development dependencies for Rails 2.x
9
+ * Added password support
10
+ * Set default URI string for Rack session store according to redis gem
11
+ * Require redis:// scheme as mandatory part of URI string
12
+ * Updated locked dependencies
13
+ * Added namespace support for Redis::DistrubutedStore
14
+ * Specs for Interface module
15
+ * Moved a spec to reflect lib/ structure
16
+ * Made specs run again with bundler-1.0.0.rc.2
17
+ * Prepare for bundler-1.0.0.rc.1
18
+ * Use tmp/ for Redis database dumps
19
+ * README, gemspec
20
+ * Lookup for scoped keys
21
+ * Introducing I18n::Backend::Redis
22
+ * Don't pollute Redis namespace. closes #16
23
+ * Don't look twice for Rails module
24
+ * Fixed loading ActionDispatch::Session issue with Rails 3
25
+ * ActiveSupport cache now uses new Rails 3 namespace API
26
+ * Let Rack::Cache entity store to use plain Redis client
27
+ * CHANGELOG
28
+ * Gemspec
29
+ * Redis::DistributedMarshaled => Redis::DistributedStore
30
+ * Extracted expiration logic in Redis::Ttl
31
+ * Introducing Redis::Store and extracted marshalling logic into Redis::Marshalling
32
+ * CHANGELOG
33
+ * Gemspec
34
+ * Removed superfluous specs. Documentation.
35
+ * Made the specs pass with Ruby 1.9.2 and Rails 3
36
+ * Made the specs pass with Ruby 1.9.2
37
+ * Prepare specs for Ruby 1.9.2
38
+ * Made the specs pass for Rails 3
39
+ * Namespaced keys for ActiveSupport::Cache::RedisStore
40
+ * Got RedisSessionStore working again with namespace
41
+ * Delegate MarshaledClient#to_s decoration to Redis::Namespace
42
+ * Redis::Namespace
43
+ * Accept :namespace option when instantiate a store
44
+ * Test against merb-1.1.0 for now
45
+ * Updated Rake tasks for Redis installation
46
+ * Advanced configurations for Rails in README. closes #8
47
+ * Locked gems
48
+ * Changed the gemspec according to the new directories structure
49
+ * Changed directories structure, according to the ActiveSupport loading policies
50
+ * Typo in CHANGELOG
51
+
52
+ *1.0.0 [beta2] (June 12, 2010)*
53
+
54
+ * Bump version v1.0.0.beta2
55
+ * Added committers names to CHANGELOG
56
+ * Added CHANGELOG
57
+ * Rake namespace: redis_cluster => redis:cluster
58
+ * Fixed Rails 3 failing spec
59
+ * Added ActiveSupport::Cache::RedisStore#read_multi
60
+ * Enabled notifications for ActiveSupport::Cache::RedisStore
61
+ * Moved spec
62
+ * Use consistent Rails 3 check in session store
63
+ * Make sure of use top-level module
64
+ * Updated Rails 2.x development dependencies
65
+
66
+ *1.0.0 [beta1] (June 9, 2010)*
67
+
68
+ * Bump version v1.0.0.beta1
69
+ * Made specs pass for Ruby 1.9.1
70
+ * Updated instructions to test against Rails 3.x
71
+ * Updated copyright year
72
+ * Prepare for v1.0.0.beta1
73
+ * Use Rails v3.0.0.beta4
74
+ * Require redis >= 2.0.0 gem in Gemfile
75
+ * Updated instructions for Rails 2 session store
76
+ * Added instructions for Rails 3 configuration
77
+ * Check against Rails#version instead of Rails::VERSION::STRING
78
+ * Added redis gem as dependency
79
+ * Changed spec_helper.rb according to the new Rails 3 check
80
+ * Fix the rails3 check [Bruno Michel]
81
+ * Added bundler cleanup Rake task
82
+ * Fixed ActiveSupport::Cache::RedisStore#fetch
83
+ * Re-enabled redis:console Rake task
84
+ * Don't use Rspec#have with ActiveSupport 3
85
+ * Fixed Rails 2 regression for ActiveSupport::Cache::RedisStore#delete_matched
86
+ * Fixed issues for ActiveSupport::Cache::RedisStore #delete_matched, #read, #rwrite
87
+ * Rails 3 namespace
88
+ * Use Rails edge instead of 3.0.0.beta3
89
+ * Made the specs run again
90
+ * Updated Gemfile development/test dependencies for rails3.
91
+ * Updated README instructions
92
+ * Updated test configuration files, according to redis-2.0.0-rc1 defaults
93
+ * Made specs pass with redis-2.0.0 gem
94
+ * Don't support the old redis-rb namespace
95
+ * Import the whole redis-rb old Rake tasks
96
+ * Updated redis-rb dependency
97
+
98
+ *0.3.8 [Final] (May 21, 2010)*
99
+
100
+ * Fixed gemspec executable issue
101
+ * Updated .gemspec
102
+ * Version bump to 0.3.8
103
+ * Started namespace migration for redis-2.0.0
104
+ * Merge branch 'master' of http://github.com/akahn/redis-store
105
+ * Fixed dependency issues. [Brian Takita]
106
+ * Removed methopara because it require ruby 1.9.1. [Brian Takita]
107
+ * Merge branch 'master' of http://github.com/dsander/redis-store [Brian Takita]
108
+ * Moved RedisSessionStore to rack session directory. [Brian Takita]
109
+ * Got RedisSessionStore working with passing specs. [Brian Takita]
110
+ * Using modified version of RedisSessionStore (http://github.com/mattmatt/redis-session-store). Still needs testing. [Brian Takita]
111
+ * Using redis 1.0.5. [Brian Takita]
112
+ * Ignoring gem files and gemspecs with a prefix. [Brian Takita]
113
+ * Added git and jeweler to dependencies. [Brian Takita]
114
+ * Ignoring .bundle and rubymine files. [Brian Takita]
115
+ * Added ability to add a prefix to the gem name via the GEM_PREFIX environment variable. [Brian Takita]
116
+ * 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]
117
+ * Fixed redis deprecation warnings. [Brian Takita]
118
+ * Using redis 1.0.4. Loading redis.tasks.rb from redis gem using Bundler. Fixed redis test configurations. [Brian Takita]
119
+ * Supports redis 1.0.5 [Dominik Sander]
120
+ * Add Rack::Session::Redis usage for Sinatra to README [Alexander Kahn]
121
+ * Updated development and testing dependencies
122
+ * Made compatible with rack-cache-0.5.2
123
+
124
+ *0.3.7 [Final] (November 15, 2009)*
125
+
126
+ * Version bump to 0.3.7
127
+ * Version bump to 0.3.7
128
+ * Updated spec instructions in README
129
+ * Jeweler generated redis-store.gemspec
130
+ * Removed no longer used Rake tasks. Added Gemcutter support via Jeweler.
131
+ * Typo
132
+ * Let Rcov task run with the Redis cluster started
133
+ * Make spec suite pass again
134
+ * README.textile -> README.md
135
+ * Re-enabled Merb specs
136
+ * Added *.rdb in .gitignore
137
+ * Run detached Redis instances for spec suite
138
+ * Start detached Redis server for specs
139
+ * Added Gemfile, removed rubygems dependecy for testing.
140
+ * Added *.swp to .gitignore
141
+ * Added jeweler rake tasks
142
+ * Make it work in classic Sinatra apps. [Dmitriy Timokhin]
143
+ * Updated README with new instructions about redis-rb
144
+
145
+ *0.3.6 [Final] (June 18, 2009)*
146
+
147
+ * Prepare for v0.3.6
148
+ * Updated README with new version
149
+ * Changed Redis config files for specs
150
+ * Updated README instructions
151
+ * New filelist in gemspec
152
+ * Fixed typo in spec
153
+ * Don't try to unmarshal empty strings
154
+ * Running specs according to the DEBUG env var
155
+ * Added specs for uncovered Merb Cache API
156
+ * Added rcov Rake task
157
+ * Fix README
158
+ * Fix typo in README
159
+ * Updated README instructions
160
+ * Removed RedisError catching
161
+ * Declaring for now RedisError in spec_helper.rb
162
+ * Removed unnecessary classes
163
+ * Fix specs for DistributedMarshaledRedis
164
+ * Fix some specs
165
+ * Made Server#notify_observers private
166
+ * Ensure to select the correct database after the socket connection
167
+ * Reverted socket pooling. Ensure to always return an active socket.
168
+ * Lowering default timeout from 10 to 0.1
169
+
170
+ *0.3.5 [Final] (May 7, 2009)*
171
+
172
+ * Prepare for v0.3.5
173
+ * Totally replace ezmobius-redis-rb Server implementation
174
+ * Fixed default Server timeout to 1 second
175
+ * Little refactoring
176
+ * Ensure Server#active? always returns a boolean and never raise an exception
177
+ * Made configurable connection pool timeout and size
178
+ * Socket connection pooling
179
+ * Updated README
180
+
181
+ *0.3.0 [Final] (May 3, 2009)*
182
+
183
+ * Prepare for v0.3.0
184
+ * README formatting issues
185
+ * README formatting (again)
186
+ * README formatting
187
+ * Updated Rack::Session instructions for Sinatra
188
+ * Make Rack::Session implementation working with Merb
189
+ * Added instructions for Rack::Session
190
+ * Expiration support for Rack::Session
191
+ * Ensure to test Rails and Sinatra expiration implementations with both MarshaledRedis and DistrbutedMarshaledRedis
192
+ * Expiration support for Merb::Cache
193
+ * Use full qualified class names in specs. Minor spec fix.
194
+ * Ported for foreword compatibility the expiration implementation from ezmobius/redis-rb
195
+ * Little spec cleanup
196
+ * Full support for Rack::Session
197
+ * Extracted some logic into RedisFactory
198
+ * Initial support for Rack::Session
199
+
200
+ *0.2.0 [Final] (April 30, 2009)*
201
+
202
+ * Prepare for v0.2.0
203
+ * Links in README
204
+ * Maybe someday I will use the right formatting rules at first attempt
205
+ * Still formatting README
206
+ * Formatting for README
207
+ * Updated instructions for Rack::Cache
208
+ * Don't require any cache store if no Ruby framework is detected
209
+ * Implemented EntityStore for Rack::Cache
210
+ * Added REDIS constant for Rack::Cache::Metastore
211
+ * MetaStore implementation for Rack::Cache
212
+
213
+ *0.1.0 [Final] (April 30, 2009)*
214
+
215
+ * Prepare for v0.1.0
216
+ * Sinatra cache support
217
+
218
+ *0.0.3 [Final] (April 30, 2009)*
219
+
220
+ * Prepare for v0.0.3
221
+ * Updated instructions for Merb
222
+ * Hack for Merb cyclic dependency
223
+ * Renaming main lib
224
+ * Merb store #writable always returns true. Added pending test.
225
+ * Merb store #fetch refactoring
226
+ * Updated Redis installation instructions
227
+ * Implemented #fetch for Merb store
228
+ * Implemented #exists?, #delete and #delete_all for Merb cache store
229
+ * Renamed project name in Rakefile
230
+ * Updated project name in README
231
+ * Updated README with Merb instructions
232
+ * Changed name in gemspec
233
+ * New gemspec
234
+ * Initial cache store support for Merb
235
+ * Moving files around
236
+ * Don't complain about missing db in tmp/
237
+
238
+ *0.0.2 [Final] (April 16, 2009)*
239
+
240
+ * Prepare for v0.0.2
241
+ * Updated file list in gemspec
242
+ * Updated README instructions
243
+ * Re-enabled spec for RedisStore#fetch
244
+ * Update rdoc
245
+ * Fix RedisStore#clear when use a cluster
246
+ * Test RedisStore both with single server and with a cluster
247
+ * Fix port in DistributedMarshaledRedis spec
248
+ * Don't slave Redis cluster node
249
+ * Changed Redis cluster configuration
250
+ * Added configuration for Redis cluster
251
+ * Use a distributed system if the store uses more than one server
252
+ * Accept params for client connection
253
+
254
+ *0.0.1 [Final] (April 11, 2009)*
255
+
256
+ * Added :unless_exist option to #write
257
+ * Added failing specs for :expires_in option
258
+ * Made optional args compatible with the Cache interface
259
+ * Implemented #delete_matched, #clear, #stats
260
+ * Implemented #delete, #exist?, #increment, #decrement
261
+ * Introduced RedisStore
262
+ * Initial import
data/Gemfile ADDED
@@ -0,0 +1,33 @@
1
+ source :gemcutter
2
+ gem "redis", ">= 2.0.0"
3
+
4
+ group :development do
5
+ gem "jeweler"
6
+ gem "git"
7
+ end
8
+
9
+ group :development, :test, :rails3 do
10
+ gem "rack"
11
+ gem "rspec", "~>1.0"
12
+ gem "rack-cache"
13
+ gem "merb", "1.1.0"
14
+ gem "i18n"
15
+
16
+ if RUBY_VERSION > '1.9'
17
+ gem "methopara" # required by merb.
18
+ else
19
+ gem "ruby-debug" # linecache isn't compatible with 1.9.2 yet.
20
+ end
21
+ end
22
+
23
+ if ENV["REDIS_STORE_ENV"] == "rails3"
24
+ group :rails3 do
25
+ gem "activesupport", "3.0.0"
26
+ gem "actionpack", "3.0.0"
27
+ end
28
+ else
29
+ group :test do
30
+ gem "activesupport", "2.3.9"
31
+ gem "actionpack", "2.3.9"
32
+ end
33
+ end
@@ -0,0 +1,194 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ ParseTree (3.0.6)
5
+ RubyInline (>= 3.7.0)
6
+ sexp_processor (>= 3.0.0)
7
+ RubyInline (3.8.6)
8
+ ZenTest (~> 4.3)
9
+ ZenTest (4.4.0)
10
+ abstract (1.0.0)
11
+ actionpack (3.0.0)
12
+ activemodel (= 3.0.0)
13
+ activesupport (= 3.0.0)
14
+ builder (~> 2.1.2)
15
+ erubis (~> 2.6.6)
16
+ i18n (~> 0.4.1)
17
+ rack (~> 1.2.1)
18
+ rack-mount (~> 0.6.12)
19
+ rack-test (~> 0.5.4)
20
+ tzinfo (~> 0.3.23)
21
+ activemodel (3.0.0)
22
+ activesupport (= 3.0.0)
23
+ builder (~> 2.1.2)
24
+ i18n (~> 0.4.1)
25
+ activesupport (3.0.0)
26
+ addressable (2.2.2)
27
+ bcrypt-ruby (2.1.2)
28
+ builder (2.1.2)
29
+ data_objects (0.10.2)
30
+ addressable (~> 2.1)
31
+ diff-lcs (1.1.2)
32
+ dm-aggregates (0.10.2)
33
+ dm-core (~> 0.10.2)
34
+ dm-constraints (0.10.2)
35
+ dm-core (~> 0.10.2)
36
+ dm-core (0.10.2)
37
+ addressable (~> 2.1)
38
+ extlib (~> 0.9.14)
39
+ dm-migrations (0.10.2)
40
+ dm-core (~> 0.10.2)
41
+ dm-serializer (0.10.2)
42
+ dm-core (~> 0.10.2)
43
+ fastercsv (~> 1.5.0)
44
+ json_pure (~> 1.2.0)
45
+ dm-sweatshop (0.10.2)
46
+ dm-core (~> 0.10.2)
47
+ randexp (~> 0.1.4)
48
+ dm-timestamps (0.10.2)
49
+ dm-core (~> 0.10.2)
50
+ dm-types (0.10.2)
51
+ bcrypt-ruby (~> 2.1.2)
52
+ dm-core (~> 0.10.2)
53
+ fastercsv (~> 1.5.0)
54
+ json_pure (~> 1.2.0)
55
+ stringex (~> 1.1.0)
56
+ uuidtools (~> 2.1.1)
57
+ dm-validations (0.10.2)
58
+ dm-core (~> 0.10.2)
59
+ do_sqlite3 (0.10.2)
60
+ data_objects (= 0.10.2)
61
+ erubis (2.6.6)
62
+ abstract (>= 1.0.0)
63
+ extlib (0.9.15)
64
+ fastercsv (1.5.3)
65
+ gemcutter (0.6.1)
66
+ git (1.2.5)
67
+ haml (3.0.23)
68
+ highline (1.6.1)
69
+ i18n (0.4.2)
70
+ jeweler (1.4.0)
71
+ gemcutter (>= 0.1.0)
72
+ git (>= 1.2.5)
73
+ rubyforge (>= 2.0.0)
74
+ json_pure (1.2.4)
75
+ mailfactory (1.4.0)
76
+ mime-types (>= 1.13.1)
77
+ merb (1.1.0)
78
+ dm-aggregates (~> 0.10)
79
+ dm-constraints (~> 0.10)
80
+ dm-serializer (~> 0.10)
81
+ dm-sweatshop (~> 0.10)
82
+ dm-timestamps (~> 0.10)
83
+ dm-types (~> 0.10)
84
+ dm-validations (~> 0.10)
85
+ do_sqlite3 (~> 0.10)
86
+ merb-action-args (= 1.1.0)
87
+ merb-assets (= 1.1.0)
88
+ merb-auth (= 1.1.0)
89
+ merb-cache (= 1.1.0)
90
+ merb-core (= 1.1.0)
91
+ merb-exceptions (= 1.1.0)
92
+ merb-gen (= 1.1.0)
93
+ merb-haml (= 1.1.0)
94
+ merb-helpers (= 1.1.0)
95
+ merb-mailer (= 1.1.0)
96
+ merb-param-protection (= 1.1.0)
97
+ merb-slices (= 1.1.0)
98
+ merb_datamapper (= 1.1.0)
99
+ merb-action-args (1.1.0)
100
+ ParseTree (>= 2.1.1)
101
+ merb-core (~> 1.1.0)
102
+ ruby2ruby (>= 1.1.9)
103
+ merb-assets (1.1.0)
104
+ merb-core (~> 1.1.0)
105
+ merb-auth (1.1.0)
106
+ merb-auth-core (~> 1.1.0)
107
+ merb-auth-more (~> 1.1.0)
108
+ merb-auth-slice-password (~> 1.1.0)
109
+ merb-core (~> 1.1.0)
110
+ merb-auth-core (1.1.1)
111
+ merb-core (~> 1.1)
112
+ merb-auth-more (1.1.1)
113
+ merb-auth-core (~> 1.1.1)
114
+ merb-auth-slice-password (1.1.1)
115
+ merb-auth-core (~> 1.1.1)
116
+ merb-auth-more (~> 1.1.1)
117
+ merb-slices (~> 1.1)
118
+ merb-cache (1.1.0)
119
+ merb-core (~> 1.1.0)
120
+ merb-core (1.1.0)
121
+ bundler (>= 0.9.3)
122
+ erubis (>= 2.6.2)
123
+ extlib (>= 0.9.13)
124
+ mime-types (>= 1.16)
125
+ rack
126
+ rake
127
+ rspec
128
+ merb-exceptions (1.1.0)
129
+ merb-core (~> 1.1.0)
130
+ merb-mailer (~> 1.1.0)
131
+ merb-gen (1.1.0)
132
+ merb-core (~> 1.1.0)
133
+ templater (>= 1.0.0)
134
+ merb-haml (1.1.0)
135
+ haml (>= 2.0.3)
136
+ merb-core (~> 1.1.0)
137
+ merb-helpers (1.1.0)
138
+ merb-core (~> 1.1.0)
139
+ merb-mailer (1.1.0)
140
+ mailfactory (>= 1.2.3)
141
+ merb-core (~> 1.1.0)
142
+ merb-param-protection (1.1.0)
143
+ merb-core (~> 1.1.0)
144
+ merb-slices (1.1.0)
145
+ merb-core (~> 1.1.0)
146
+ merb_datamapper (1.1.0)
147
+ dm-core (~> 0.10)
148
+ dm-migrations (~> 0.10)
149
+ merb-core (~> 1.1.0)
150
+ methopara (0.3.2)
151
+ mime-types (1.16)
152
+ rack (1.2.1)
153
+ rack-cache (0.5.3)
154
+ rack (>= 0.4)
155
+ rack-mount (0.6.13)
156
+ rack (>= 1.0.0)
157
+ rack-test (0.5.6)
158
+ rack (>= 1.0)
159
+ rake (0.8.7)
160
+ randexp (0.1.5)
161
+ ParseTree
162
+ redis (2.1.1)
163
+ rspec (1.3.1)
164
+ ruby2ruby (1.2.5)
165
+ ruby_parser (~> 2.0)
166
+ sexp_processor (~> 3.0)
167
+ ruby_parser (2.0.5)
168
+ sexp_processor (~> 3.0)
169
+ rubyforge (2.0.4)
170
+ json_pure (>= 1.1.7)
171
+ sexp_processor (3.0.5)
172
+ stringex (1.1.0)
173
+ templater (1.0.0)
174
+ diff-lcs (>= 1.1.2)
175
+ extlib (>= 0.9.5)
176
+ highline (>= 1.4.0)
177
+ tzinfo (0.3.23)
178
+ uuidtools (2.1.1)
179
+
180
+ PLATFORMS
181
+ ruby
182
+
183
+ DEPENDENCIES
184
+ actionpack (= 3.0.0)
185
+ activesupport (= 3.0.0)
186
+ git
187
+ i18n
188
+ jeweler
189
+ merb (= 1.1.0)
190
+ methopara
191
+ rack
192
+ rack-cache
193
+ redis (>= 2.0.0)
194
+ rspec (~> 1.0)