Add frozen_string_literal magic comment

re: https://www.rubydoc.info/gems/rubocop/RuboCop/Cop/Style/FrozenStringLiteralComment
This commit is contained in:
James Mason 2018-05-07 16:47:29 -07:00
parent dd0a52cca9
commit 6d31dfeef4
568 changed files with 1134 additions and 0 deletions

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe Admin::BoothsController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe Admin::CommentsController, type: :controller do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe Admin::ConferencesController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe Admin::EventSchedulesController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe Admin::EventsController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe Admin::OrganizationsController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe Admin::ProgramsController, type: :controller do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe Admin::RegistrationPeriodsController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe Admin::RolesController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe Admin::RoomsController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe Admin::SchedulesController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe Admin::SponsorshipLevelsController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe Admin::TargetsController, type: :controller do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe Admin::TicketScanningsController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe Admin::TracksController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe Admin::UsersController do
let(:admin) { create(:admin) }

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe Admin::VersionsController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe Api::V1::ConferencesController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe Api::V1::EventsController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe Api::V1::RoomsController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe Api::V1::SpeakersController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe Api::V1::TracksController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe ApplicationController, type: :controller do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe BoothsController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe ConferenceRegistrationsController, type: :controller do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe ConferencesController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe ConfirmationsController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe OrganizationsController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe PhysicalTicketsController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe ProposalsController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe SchedulesController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe SubscriptionsController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe TracksController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe Users::OmniauthCallbacksController do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe UsersController do