Enforce Style/FrozenStringLiteralComment. (#6265)

Merge pull request 6265
This commit is contained in:
Parker Moore
2017-08-03 21:27:32 -04:00
committed by jekyllbot
parent f9f05e3f75
commit 7cf5f51ca2
133 changed files with 264 additions and 12 deletions

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = "test-dependency-theme"
s.version = "0.1.0"

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = "test-theme"
s.version = "0.1.0"

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
$stdout.puts "# -------------------------------------------------------------"
$stdout.puts "# SPECS AND TESTS ARE RUNNING WITH WARNINGS OFF."
$stdout.puts "# SEE: https://github.com/Shopify/liquid/issues/730"

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "simplecov"
SimpleCov.profiles.define "gem" do

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
module Jekyll
class Dummy < Generator
priority :high

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestAnsi < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestCleaner < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestCoffeeScript < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestCollections < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestCommand < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "webrick"
require "mercenary"
require "helper"

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
require "colorator"

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
require "ostruct"

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
require "jekyll/commands/doctor"

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestDocument < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestDrop < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestEntryFilter < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestExcerpt < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestExcerptDrop < JekyllUnitTest

View File

@@ -1,4 +1,5 @@
# coding: utf-8
# frozen_string_literal: true
require "helper"

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestFrontMatterDefaults < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestGeneratedSite < JekyllUnitTest

View File

@@ -1,4 +1,5 @@
# encoding: UTF-8
# frozen_string_literal: true
require "helper"

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestLayoutReader < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestLiquidExtensions < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestLiquidRenderer < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestLogAdapter < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
require "jekyll/commands/new"

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestPage < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestPathSanitization < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestPluginManager < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestRdiscount < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestRedcarpet < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestRegenerator < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestRelatedPosts < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestSass < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestSite < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestSiteDrop < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestStaticFile < JekyllUnitTest

View File

@@ -1,4 +1,5 @@
# coding: utf-8
# frozen_string_literal: true
require "helper"

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestTheme < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestThemeAssetsReader < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestURL < JekyllUnitTest

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "helper"
class TestUtils < JekyllUnitTest