Skip to content

Commit 3170daa

Browse files
committed
(PUP-11841) Add frozen_string_literal
1 parent 46eddcf commit 3170daa

File tree

997 files changed

+996
-6
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

997 files changed

+996
-6
lines changed

.rubocop_todo.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1217,12 +1217,6 @@ Style/FormatString:
12171217
Style/FormatStringToken:
12181218
Enabled: false
12191219

1220-
# This cop supports safe auto-correction (--auto-correct).
1221-
# Configuration parameters: EnforcedStyle.
1222-
# SupportedStyles: always, always_true, never
1223-
Style/FrozenStringLiteralComment:
1224-
Enabled: false
1225-
12261220
# This cop supports safe auto-correction (--auto-correct).
12271221
Style/GlobalStdStream:
12281222
Exclude:

lib/hiera/puppet_function.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require 'hiera_puppet'
23

34
# Provides the base class for the puppet functions hiera, hiera_array, hiera_hash, and hiera_include.

lib/hiera/scope.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require 'forwardable'
23
class Hiera
34
class Scope

lib/hiera_puppet.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
Puppet.features.hiera?
23
require 'hiera/scope'
34
require_relative 'puppet'

lib/puppet.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative 'puppet/version'
23
require_relative 'puppet/concurrent/synchronized'
34

lib/puppet/agent.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../puppet/application'
23
require_relative '../puppet/error'
34
require_relative '../puppet/util/at_fork'

lib/puppet/agent/disabler.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/util/json_lockfile'
23

34
# This module is responsible for encapsulating the logic for

lib/puppet/agent/locker.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/util/pidlock'
23
require_relative '../../puppet/error'
34

lib/puppet/application.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require 'optparse'
23
require_relative '../puppet/util/command_line'
34
require_relative '../puppet/util/constant_inflector'

lib/puppet/application/agent.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/application'
23
require_relative '../../puppet/daemon'
34
require_relative '../../puppet/util/pidlock'

lib/puppet/application/apply.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/application'
23
require_relative '../../puppet/configurer'
34
require_relative '../../puppet/util/profiler/aggregate'

lib/puppet/application/catalog.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/application/indirection_base'
23

34
class Puppet::Application::Catalog < Puppet::Application::IndirectionBase

lib/puppet/application/config.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/application/face_base'
23

34
class Puppet::Application::Config < Puppet::Application::FaceBase

lib/puppet/application/describe.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/application'
23

34
class Formatter

lib/puppet/application/device.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/application'
23
require_relative '../../puppet/configurer'
34
require_relative '../../puppet/util/network_device'

lib/puppet/application/doc.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/application'
23

34
class Puppet::Application::Doc < Puppet::Application

lib/puppet/application/epp.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/application/face_base'
23
require_relative '../../puppet/face'
34

lib/puppet/application/face_base.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/application'
23
require_relative '../../puppet/face'
34
require 'optparse'

lib/puppet/application/facts.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/application/indirection_base'
23

34
class Puppet::Application::Facts < Puppet::Application::IndirectionBase

lib/puppet/application/filebucket.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/application'
23

34
class Puppet::Application::Filebucket < Puppet::Application

lib/puppet/application/generate.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/application/face_base'
23

34
# The Generate application.

lib/puppet/application/help.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/application/face_base'
23

34
class Puppet::Application::Help < Puppet::Application::FaceBase

lib/puppet/application/indirection_base.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/application/face_base'
23

34
class Puppet::Application::IndirectionBase < Puppet::Application::FaceBase

lib/puppet/application/lookup.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/application'
23
require_relative '../../puppet/pops'
34
require_relative '../../puppet/node'

lib/puppet/application/module.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/application/face_base'
23

34
class Puppet::Application::Module < Puppet::Application::FaceBase

lib/puppet/application/node.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/application/indirection_base'
23

34
class Puppet::Application::Node < Puppet::Application::IndirectionBase

lib/puppet/application/parser.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/application/face_base'
23
require_relative '../../puppet/face'
34

lib/puppet/application/plugin.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/application/face_base'
23
class Puppet::Application::Plugin < Puppet::Application::FaceBase
34
environment_mode :not_required

lib/puppet/application/report.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/application/indirection_base'
23

34
class Puppet::Application::Report < Puppet::Application::IndirectionBase

lib/puppet/application/resource.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/application'
23

34
class Puppet::Application::Resource < Puppet::Application

lib/puppet/application/script.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/application'
23
require_relative '../../puppet/configurer'
34
require_relative '../../puppet/util/profiler/aggregate'

lib/puppet/application/ssl.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/application'
23
require_relative '../../puppet/ssl/oids'
34

lib/puppet/application_support.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require 'yaml'
23

34
require_relative '../puppet'

lib/puppet/coercion.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
# Various methods used to coerce values into a canonical form.
23
#
34
# @api private

lib/puppet/compilable_resource_type.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../puppet'
23
# The CompilableResourceType module should be either included in a class or used as a class extension
34
# to mark that the instance used as the 'resource type' of a resource instance

lib/puppet/concurrent.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
# frozen_string_literal: true
12
module Puppet::Concurrent
23
end

lib/puppet/concurrent/lock.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/concurrent/synchronized'
23

34
module Puppet

lib/puppet/concurrent/synchronized.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
module Puppet
23
module Concurrent
34

lib/puppet/configurer.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
# The client for interacting with the puppetmaster config server.
23
require 'timeout'
34
require_relative '../puppet/util'

lib/puppet/configurer/downloader.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/configurer'
23
require_relative '../../puppet/resource/catalog'
34

lib/puppet/configurer/fact_handler.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/indirector/facts/facter'
23

34
require_relative '../../puppet/configurer'

lib/puppet/configurer/plugin_handler.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
# Break out the code related to plugins. This module is
23
# just included into the agent, but having it here makes it
34
# easier to test.

lib/puppet/confine.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
# The class that handles testing whether our providers
23
# actually work or not.
34
require_relative '../puppet/util'

lib/puppet/confine/any.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
class Puppet::Confine::Any < Puppet::Confine
23
def self.summarize(confines)
34
confines.inject(0) { |count, confine| count + confine.summary }

lib/puppet/confine/boolean.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/confine'
23

34
# Common module for the Boolean confines. It currently

lib/puppet/confine/exists.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/confine'
23

34
class Puppet::Confine::Exists < Puppet::Confine

lib/puppet/confine/false.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/confine/boolean'
23

34
class Puppet::Confine::False < Puppet::Confine

lib/puppet/confine/feature.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/confine'
23

34
class Puppet::Confine::Feature < Puppet::Confine

lib/puppet/confine/true.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/confine/boolean'
23

34
class Puppet::Confine::True < Puppet::Confine

lib/puppet/confine/variable.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/confine'
23

34
# Require a specific value for a variable, either a Puppet setting

lib/puppet/confine_collection.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
# Manage a collection of confines, returning a boolean or
23
# helpful information.
34
require_relative '../puppet/confine'

lib/puppet/confiner.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../puppet/confine_collection'
23

34
# The Confiner module contains methods for managing a Provider's confinement (suitability under given

lib/puppet/context.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../puppet/thread_local'
23

34
# Puppet::Context is a system for tracking services and contextual information

lib/puppet/context/trusted_information.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/trusted_external'
23

34
# @api private

lib/puppet/daemon.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../puppet/application'
23
require_relative '../puppet/scheduler'
34

lib/puppet/data_binding.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../puppet/indirector'
23

34
# A class for managing data lookups

lib/puppet/datatypes.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
# Data types in the Puppet Language can have implementations written in Ruby
23
# and distributed in puppet modules. A data type can be declared together with
34
# its implementation by creating a file in 'lib/puppet/functions/<modulename>'.

lib/puppet/datatypes/error.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
Puppet::DataTypes.create_type('Error') do
23
interface <<-PUPPET
34
type_parameters => {

lib/puppet/datatypes/impl/error.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
class Puppet::DataTypes::Error
23
attr_reader :msg, :kind, :issue_code, :details
34
alias message msg

lib/puppet/defaults.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../puppet/util/platform'
23

34
module Puppet

lib/puppet/environments.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../puppet/concurrent/synchronized'
23

34
# @api private

lib/puppet/error.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
module Puppet
23
# The base class for all Puppet errors. It can wrap another exception
34
class Error < RuntimeError

lib/puppet/etc.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../puppet/util/character_encoding'
23
# Wrapper around Ruby Etc module allowing us to manage encoding in a single
34
# place.

lib/puppet/external/dot.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
# rdot.rb
23
#
34
#

lib/puppet/face.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
# The public name of this feature is 'face', but we have hidden all the
23
# plumbing over in the 'interfaces' namespace to make clear the distinction
34
# between the two.

lib/puppet/face/catalog.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/indirector/face'
23

34
Puppet::Indirector::Face.define(:catalog, '0.0.1') do

lib/puppet/face/catalog/select.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
# Select and show a list of resources of a given type.
23
Puppet::Face.define(:catalog, '0.0.1') do
34
action :select do

lib/puppet/face/config.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/face'
23
require_relative '../../puppet/settings/ini_file'
34

lib/puppet/face/epp.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/face'
23
require_relative '../../puppet/pops'
34
require_relative '../../puppet/parser/files'

lib/puppet/face/facts.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/indirector/face'
23
require_relative '../../puppet/node/facts'
34

lib/puppet/face/generate.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/face'
23
require_relative '../../puppet/generate/type'
34

lib/puppet/face/help.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/face'
23
require_relative '../../puppet/application/face_base'
34
require_relative '../../puppet/util/constant_inflector'

lib/puppet/face/module.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
require_relative '../../puppet/face'
23
require_relative '../../puppet/module_tool'
34
require_relative '../../puppet/util/colors'

lib/puppet/face/module/changes.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
Puppet::Face.define(:module, '1.0.0') do
23
action(:changes) do
34
summary _("Show modified files of an installed module.")

lib/puppet/face/module/install.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# encoding: UTF-8
2+
# frozen_string_literal: true
23
require_relative '../../../puppet/forge'
34
require_relative '../../../puppet/module_tool/install_directory'
45
require 'pathname'

lib/puppet/face/module/list.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# encoding: UTF-8
2+
# frozen_string_literal: true
23

34
Puppet::Face.define(:module, '1.0.0') do
45
action(:list) do

lib/puppet/face/module/uninstall.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: true
12
Puppet::Face.define(:module, '1.0.0') do
23
action(:uninstall) do
34
summary _("Uninstall a puppet module.")

lib/puppet/face/module/upgrade.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# encoding: UTF-8
2+
# frozen_string_literal: true
23

34
Puppet::Face.define(:module, '1.0.0') do
45
action(:upgrade) do

0 commit comments

Comments
 (0)