From e3075c17fffb6b8f26571d6b47c33764ad994ec2 Mon Sep 17 00:00:00 2001 From: George Claghorn Date: Sat, 27 Mar 2021 08:07:47 -0400 Subject: [PATCH] Add frozen_string_literal pragma --- .../active_storage/representations/base_controller.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/activestorage/app/controllers/active_storage/representations/base_controller.rb b/activestorage/app/controllers/active_storage/representations/base_controller.rb index 52c49b0881..3b4cc9ca2d 100644 --- a/activestorage/app/controllers/active_storage/representations/base_controller.rb +++ b/activestorage/app/controllers/active_storage/representations/base_controller.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + class ActiveStorage::Representations::BaseController < ActiveStorage::BaseController #:nodoc: include ActiveStorage::SetBlob