From fdc17bea58f210f62ac0d9e836b68e84c6dbd15c Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 15 Nov 2016 16:56:29 +0100 Subject: Fix rubocop issues, introduce usage of frozen literal to improve performance --- app/channels/application_cable/channel.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'app/channels/application_cable/channel.rb') diff --git a/app/channels/application_cable/channel.rb b/app/channels/application_cable/channel.rb index 28bf0d9d3..69e069212 100644 --- a/app/channels/application_cable/channel.rb +++ b/app/channels/application_cable/channel.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + module ApplicationCable class Channel < ActionCable::Channel::Base protected -- cgit