class Rails::Generators::AppBase

def cable_gemfile_entry

def cable_gemfile_entry
  return if options[:skip_action_cable]
  comment = "Use Redis adapter to run Action Cable in production"
  GemfileEntry.new("redis", ">= 4.0.1", comment, {}, true)
end