aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators
diff options
context:
space:
mode:
authorMatthew Draper <matthew@trebex.net>2016-02-01 01:30:00 +1030
committerMatthew Draper <matthew@trebex.net>2016-02-01 01:56:47 +1030
commite77368637e17e6a33db2713f651e85a09456c645 (patch)
tree6d62404d3b64969d04d9f70a4c5c9ed44f2253e9 /railties/lib/rails/generators
parent6162c49e40582bf058a6bb82ccc0cfb8f92332b6 (diff)
downloadrails-e77368637e17e6a33db2713f651e85a09456c645.tar.gz
rails-e77368637e17e6a33db2713f651e85a09456c645.tar.bz2
rails-e77368637e17e6a33db2713f651e85a09456c645.zip
Switch the default redis adapter to a single-stream model
This new adapter does get a little more intimate with the redis-rb gem's implementation than I would like, but it's the least bad of the approaches I've come up with.
Diffstat (limited to 'railties/lib/rails/generators')
-rw-r--r--railties/lib/rails/generators/app_base.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/railties/lib/rails/generators/app_base.rb b/railties/lib/rails/generators/app_base.rb
index c629459d95..51394de824 100644
--- a/railties/lib/rails/generators/app_base.rb
+++ b/railties/lib/rails/generators/app_base.rb
@@ -344,7 +344,6 @@ module Rails
return [] if options[:skip_action_cable]
comment = 'Action Cable dependencies for the Redis adapter'
gems = []
- gems << GemfileEntry.new("em-hiredis", '~> 0.3.0', comment)
gems << GemfileEntry.new("redis", '~> 3.0', comment)
gems
end