1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #30625 from y-yagi/remove_frozen_string_literal_from_templates

Remove frozen_string_literal magic comment from templates
This commit is contained in:
Ryuta Kamizono 2017-09-17 09:59:39 +09:00 committed by GitHub
commit bf206dc2fc
12 changed files with 0 additions and 24 deletions

View file

@ -1,5 +1,3 @@
# frozen_string_literal: true
require 'test_helper'
<% module_namespacing do -%>

View file

@ -1,5 +1,3 @@
# frozen_string_literal: true
require 'test_helper'
require '<%= generator_path %>'

View file

@ -1,5 +1,3 @@
# frozen_string_literal: true
require 'test_helper'
<% module_namespacing do -%>

View file

@ -1,5 +1,3 @@
# frozen_string_literal: true
require 'test_helper'
<% module_namespacing do -%>

View file

@ -1,5 +1,3 @@
# frozen_string_literal: true
<% module_namespacing do -%>
# Preview all emails at http://localhost:3000/rails/mailers/<%= file_path %>_mailer
class <%= class_name %>MailerPreview < ActionMailer::Preview

View file

@ -1,5 +1,3 @@
# frozen_string_literal: true
require 'test_helper'
<% module_namespacing do -%>

View file

@ -1,4 +1,2 @@
# frozen_string_literal: true
require 'active_support/testing/autorun'
require 'active_support'

View file

@ -1,5 +1,3 @@
# frozen_string_literal: true
require 'test_helper'
<% module_namespacing do -%>

View file

@ -1,5 +1,3 @@
# frozen_string_literal: true
require 'test_helper'
<% module_namespacing do -%>

View file

@ -1,5 +1,3 @@
# frozen_string_literal: true
require "application_system_test_case"
<% module_namespacing do -%>

View file

@ -1,5 +1,3 @@
# frozen_string_literal: true
require "test_helper"
class ApplicationSystemTestCase < ActionDispatch::SystemTestCase

View file

@ -1,5 +1,3 @@
# frozen_string_literal: true
require "application_system_test_case"
class <%= class_name.pluralize %>Test < ApplicationSystemTestCase