lib/rubocop/cop/chef/modernize/zipfile_resource.rb in cookstyle-6.11.4 vs lib/rubocop/cop/chef/modernize/zipfile_resource.rb in cookstyle-6.12.6
- old
+ new
@@ -1,5 +1,6 @@
+# frozen_string_literal: true
#
# Copyright:: 2019, Chef Software, Inc.
# Author:: Tim Smith (<tsmith@chef.io>)
#
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -32,10 +33,10 @@
include RuboCop::Chef::CookbookHelpers
extend TargetChefVersion
minimum_target_chef_version '15.0'
- MSG = 'Use the archive_file resource built into Chef Infra Client 15+ instead of the zipfile resource from the zipfile cookbook.'.freeze
+ MSG = 'Use the archive_file resource built into Chef Infra Client 15+ instead of the zipfile resource from the zipfile cookbook.'
def_node_matcher :depends_zipfile?, <<-PATTERN
(send nil? :depends (str "zipfile"))
PATTERN