├── .buildkite └── hooks │ └── pre-command ├── .expeditor ├── build.habitat.yml ├── build_docs.sh ├── buildkite │ ├── artifact.habitat.test.ps1 │ └── artifact.habitat.test.sh ├── config.yml ├── habitat-test.pipeline.yml └── update_version.sh ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── BUG_TEMPLATE.md │ ├── DESIGN_PROPOSAL.md │ ├── NEW_COP_REQUEST.md │ └── SUPPORT_QUESTION.md ├── copilot-instructions.md ├── dependabot.yml ├── mcp.json └── workflows │ ├── lint.yml │ └── unit.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── RELEASE_NOTES.md ├── Rakefile ├── VERSION ├── bin ├── cookstyle └── cookstyle-profile ├── config ├── chefstyle.yml ├── cookstyle.yml └── default.yml ├── cookstyle.gemspec ├── cspell.json ├── docs-chef-io ├── assets │ └── cookstyle │ │ ├── .gitkeep │ │ ├── cops_chef_correctness_blockguardwithonlystring.yml │ │ ├── cops_chef_correctness_chefapplicationfatal.yml │ │ ├── cops_chef_correctness_conditionalrubyshellout.yml │ │ ├── cops_chef_correctness_cookbookusesnodesave.yml │ │ ├── cops_chef_correctness_dnfpackageallowdowngrades.yml │ │ ├── cops_chef_correctness_emptyresourceguard.yml │ │ ├── cops_chef_correctness_incorrectlibraryinjection.yml │ │ ├── cops_chef_correctness_invalidcookbookname.yml │ │ ├── cops_chef_correctness_invaliddefaultaction.yml │ │ ├── cops_chef_correctness_invalidnotificationresource.yml │ │ ├── cops_chef_correctness_invalidnotificationtiming.yml │ │ ├── cops_chef_correctness_invalidplatformfamilyhelper.yml │ │ ├── cops_chef_correctness_invalidplatformfamilyincase.yml │ │ ├── cops_chef_correctness_invalidplatformhelper.yml │ │ ├── cops_chef_correctness_invalidplatformincase.yml │ │ ├── cops_chef_correctness_invalidplatformmetadata.yml │ │ ├── cops_chef_correctness_invalidplatformvalueforplatformfamilyhelper.yml │ │ ├── cops_chef_correctness_invalidplatformvalueforplatformhelper.yml │ │ ├── cops_chef_correctness_invalidversionmetadata.yml │ │ ├── cops_chef_correctness_lazyevalnodeattributedefaults.yml │ │ ├── cops_chef_correctness_lazyinresourceguard.yml │ │ ├── cops_chef_correctness_macosuserdefaultsinvalidtype.yml │ │ ├── cops_chef_correctness_malformedplatformvalueforplatformhelper.yml │ │ ├── cops_chef_correctness_metadatamalformeddepends.yml │ │ ├── cops_chef_correctness_metadatamissingname.yml │ │ ├── cops_chef_correctness_metadatamissingversion.yml │ │ ├── cops_chef_correctness_nodenormal.yml │ │ ├── cops_chef_correctness_nodenormalunless.yml │ │ ├── cops_chef_correctness_notifiesactionnotsymbol.yml │ │ ├── cops_chef_correctness_octalmodeasstring.yml │ │ ├── cops_chef_correctness_opensslpasswordhelpers.yml │ │ ├── cops_chef_correctness_powershellfileexists.yml │ │ ├── cops_chef_correctness_powershellscriptdeletefile.yml │ │ ├── cops_chef_correctness_propertywithouttype.yml │ │ ├── cops_chef_correctness_resourcesetsinternalproperties.yml │ │ ├── cops_chef_correctness_resourcesetsnameproperty.yml │ │ ├── cops_chef_correctness_resourcewithnoneaction.yml │ │ ├── cops_chef_correctness_scopedfileexist.yml │ │ ├── cops_chef_correctness_serviceresource.yml │ │ ├── cops_chef_correctness_supportsmustbefloat.yml │ │ ├── cops_chef_correctness_tmppath.yml │ │ ├── cops_chef_deprecations_chefdkgenerators.yml │ │ ├── cops_chef_deprecations_cheffile.yml │ │ ├── cops_chef_deprecations_chefhandlerrecipe.yml │ │ ├── cops_chef_deprecations_chefhandlerusessupports.yml │ │ ├── cops_chef_deprecations_chefrewind.yml │ │ ├── cops_chef_deprecations_chefshellout.yml │ │ ├── cops_chef_deprecations_chefspeccoveragereport.yml │ │ ├── cops_chef_deprecations_chefspeclegacyrunner.yml │ │ ├── cops_chef_deprecations_chefsugarhelpers.yml │ │ ├── cops_chef_deprecations_chefwindowsplatformhelper.yml │ │ ├── cops_chef_deprecations_chocolateypackageuninstallaction.yml │ │ ├── cops_chef_deprecations_cookbookdependsoncompatresource.yml │ │ ├── cops_chef_deprecations_cookbookdependsonpartialsearch.yml │ │ ├── cops_chef_deprecations_cookbookdependsonpoise.yml │ │ ├── cops_chef_deprecations_cookbooksdependsonself.yml │ │ ├── cops_chef_deprecations_delivery.yml │ │ ├── cops_chef_deprecations_dependsonchefnginxcookbook.yml │ │ ├── cops_chef_deprecations_dependsonchefreportingcookbook.yml │ │ ├── cops_chef_deprecations_dependsonomnibusupdatercookbook.yml │ │ ├── cops_chef_deprecations_deprecatedchefspecplatform.yml │ │ ├── cops_chef_deprecations_deprecatedplatformmethods.yml │ │ ├── cops_chef_deprecations_deprecatedshelloutmethods.yml │ │ ├── cops_chef_deprecations_deprecatedsudoactions.yml │ │ ├── cops_chef_deprecations_deprecatedwindowsversioncheck.yml │ │ ├── cops_chef_deprecations_deprecatedyumrepositoryactions.yml │ │ ├── cops_chef_deprecations_deprecatedyumrepositoryproperties.yml │ │ ├── cops_chef_deprecations_easyinstallresource.yml │ │ ├── cops_chef_deprecations_eolauditmodeusage.yml │ │ ├── cops_chef_deprecations_epicfail.yml │ │ ├── cops_chef_deprecations_erlcallresource.yml │ │ ├── cops_chef_deprecations_executepathproperty.yml │ │ ├── cops_chef_deprecations_executerelativecreateswithoutcwd.yml │ │ ├── cops_chef_deprecations_foodcriticfile.yml │ │ ├── cops_chef_deprecations_foodcritictesting.yml │ │ ├── cops_chef_deprecations_hwrpwithoutprovides.yml │ │ ├── cops_chef_deprecations_hwrpwithoutunifiedtrue.yml │ │ ├── cops_chef_deprecations_includingxmlrubyrecipe.yml │ │ ├── cops_chef_deprecations_includingyumdnfcompatrecipe.yml │ │ ├── cops_chef_deprecations_launchddeprecatedhashproperty.yml │ │ ├── cops_chef_deprecations_legacynotifysyntax.yml │ │ ├── cops_chef_deprecations_legacyyumcookbookrecipes.yml │ │ ├── cops_chef_deprecations_librarianchefspec.yml │ │ ├── cops_chef_deprecations_localedeprecatedlcallproperty.yml │ │ ├── cops_chef_deprecations_logresourcenotifications.yml │ │ ├── cops_chef_deprecations_macosuserdefaultsglobalproperty.yml │ │ ├── cops_chef_deprecations_namepropertywithdefaultvalue.yml │ │ ├── cops_chef_deprecations_nodedeepfetch.yml │ │ ├── cops_chef_deprecations_nodemethodsinsteadofattributes.yml │ │ ├── cops_chef_deprecations_nodeset.yml │ │ ├── cops_chef_deprecations_nodesetunless.yml │ │ ├── cops_chef_deprecations_nodesetwithoutlevel.yml │ │ ├── cops_chef_deprecations_partialsearchclassusage.yml │ │ ├── cops_chef_deprecations_partialsearchhelperusage.yml │ │ ├── cops_chef_deprecations_poisearchiveusage.yml │ │ ├── cops_chef_deprecations_policyfilecommunitysource.yml │ │ ├── cops_chef_deprecations_powershellcookbookhelpers.yml │ │ ├── cops_chef_deprecations_requirerecipe.yml │ │ ├── cops_chef_deprecations_resourceinheritsfromcompatresource.yml │ │ ├── cops_chef_deprecations_resourceoverridesprovidesmethod.yml │ │ ├── cops_chef_deprecations_resourceusesdslnamemethod.yml │ │ ├── cops_chef_deprecations_resourceusesonlyresourcename.yml │ │ ├── cops_chef_deprecations_resourceusesproviderbasemethod.yml │ │ ├── cops_chef_deprecations_resourceusesupdatedmethod.yml │ │ ├── cops_chef_deprecations_resourcewithoutunifiedtrue.yml │ │ ├── cops_chef_deprecations_ruby27keywordargumentwarnings.yml │ │ ├── cops_chef_deprecations_rubyblockcreateaction.yml │ │ ├── cops_chef_deprecations_searchusespositionalparameters.yml │ │ ├── cops_chef_deprecations_useautomaticresourcename.yml │ │ ├── cops_chef_deprecations_useinlineresourcesdefined.yml │ │ ├── cops_chef_deprecations_userdeprecatedsupportsproperty.yml │ │ ├── cops_chef_deprecations_useschefresthelpers.yml │ │ ├── cops_chef_deprecations_usesdeprecatedmixins.yml │ │ ├── cops_chef_deprecations_usesruncommandhelper.yml │ │ ├── cops_chef_deprecations_useyamldump.yml │ │ ├── cops_chef_deprecations_verifypropertyusesfileexpansion.yml │ │ ├── cops_chef_deprecations_windowsfeatureservermanagercmd.yml │ │ ├── cops_chef_deprecations_windowspackageinstallertypestring.yml │ │ ├── cops_chef_deprecations_windowstaskchangeaction.yml │ │ ├── cops_chef_deprecations_windowsversionhelpers.yml │ │ ├── cops_chef_effortless_berksfile.yml │ │ ├── cops_chef_effortless_chefvaultused.yml │ │ ├── cops_chef_effortless_cookbookusesdatabags.yml │ │ ├── cops_chef_effortless_cookbookusesenvironments.yml │ │ ├── cops_chef_effortless_cookbookusespolicygroups.yml │ │ ├── cops_chef_effortless_cookbookusesroles.yml │ │ ├── cops_chef_effortless_cookbookusessearch.yml │ │ ├── cops_chef_effortless_dependschefvault.yml │ │ ├── cops_chef_effortless_searchforenvironmentsorroles.yml │ │ ├── cops_chef_modernize_actionmethodinresource.yml │ │ ├── cops_chef_modernize_allowedactionsfrominitialize.yml │ │ ├── cops_chef_modernize_chefgemnokogiri.yml │ │ ├── cops_chef_modernize_classevalactionclass.yml │ │ ├── cops_chef_modernize_conditionalusingtest.yml │ │ ├── cops_chef_modernize_crondfileortemplate.yml │ │ ├── cops_chef_modernize_cronmanageresource.yml │ │ ├── cops_chef_modernize_customresourcewithattributes.yml │ │ ├── cops_chef_modernize_databaghelpers.yml │ │ ├── cops_chef_modernize_declareactionclass.yml │ │ ├── cops_chef_modernize_defaultactionfrominitialize.yml │ │ ├── cops_chef_modernize_defineschefspecmatchers.yml │ │ ├── cops_chef_modernize_definitions.yml │ │ ├── cops_chef_modernize_dependsonchefvaultcookbook.yml │ │ ├── cops_chef_modernize_dependsonchocolateycookbooks.yml │ │ ├── cops_chef_modernize_dependsonkernelmodulecookbook.yml │ │ ├── cops_chef_modernize_dependsonlocalecookbook.yml │ │ ├── cops_chef_modernize_dependsonopensslcookbook.yml │ │ ├── cops_chef_modernize_dependsontimezonelwrpcookbook.yml │ │ ├── cops_chef_modernize_dependsonwindowsfirewallcookbook.yml │ │ ├── cops_chef_modernize_dependsonzyppercookbook.yml │ │ ├── cops_chef_modernize_dslincludeinresource.yml │ │ ├── cops_chef_modernize_emptyresourceinitializemethod.yml │ │ ├── cops_chef_modernize_executeaptupdate.yml │ │ ├── cops_chef_modernize_executescexe.yml │ │ ├── cops_chef_modernize_executesleep.yml │ │ ├── cops_chef_modernize_executesysctl.yml │ │ ├── cops_chef_modernize_executetzutil.yml │ │ ├── cops_chef_modernize_foodcriticcomments.yml │ │ ├── cops_chef_modernize_ifprovidesdefaultaction.yml │ │ ├── cops_chef_modernize_includingaptdefaultrecipe.yml │ │ ├── cops_chef_modernize_includingmixinshelloutinresources.yml │ │ ├── cops_chef_modernize_includingohaidefaultrecipe.yml │ │ ├── cops_chef_modernize_includingwindowsdefaultrecipe.yml │ │ ├── cops_chef_modernize_legacyberksfilesource.yml │ │ ├── cops_chef_modernize_libarchivefileresource.yml │ │ ├── cops_chef_modernize_macosxuserdefaults.yml │ │ ├── cops_chef_modernize_minitesthandlerusage.yml │ │ ├── cops_chef_modernize_nodeinitpackage.yml │ │ ├── cops_chef_modernize_noderolesinclude.yml │ │ ├── cops_chef_modernize_opensslrsakeyresource.yml │ │ ├── cops_chef_modernize_opensslx509resource.yml │ │ ├── cops_chef_modernize_osxconfigprofileresource.yml │ │ ├── cops_chef_modernize_powershellguardinterpreter.yml │ │ ├── cops_chef_modernize_powershellinstallpackage.yml │ │ ├── cops_chef_modernize_powershellinstallwindowsfeature.yml │ │ ├── cops_chef_modernize_powershellscriptexpandarchive.yml │ │ ├── cops_chef_modernize_propertywithnameattribute.yml │ │ ├── cops_chef_modernize_providesfrominitialize.yml │ │ ├── cops_chef_modernize_resourceforcingcompiletime.yml │ │ ├── cops_chef_modernize_resourcenamefrominitialize.yml │ │ ├── cops_chef_modernize_respondtocompiletime.yml │ │ ├── cops_chef_modernize_respondtoinmetadata.yml │ │ ├── cops_chef_modernize_respondtoprovides.yml │ │ ├── cops_chef_modernize_respondtoresourcename.yml │ │ ├── cops_chef_modernize_setorreturninresources.yml │ │ ├── cops_chef_modernize_sevenziparchiveresource.yml │ │ ├── cops_chef_modernize_shellouthelper.yml │ │ ├── cops_chef_modernize_shellouttochocolatey.yml │ │ ├── cops_chef_modernize_simplifyaptppasetup.yml │ │ ├── cops_chef_modernize_sysctlparamresource.yml │ │ ├── cops_chef_modernize_unnecessarydependschef14.yml │ │ ├── cops_chef_modernize_unnecessarydependschef15.yml │ │ ├── cops_chef_modernize_unnecessarymixlibshelloutrequire.yml │ │ ├── cops_chef_modernize_usebuildessentialresource.yml │ │ ├── cops_chef_modernize_usecheflanguagecloudhelpers.yml │ │ ├── cops_chef_modernize_usecheflanguageenvhelpers.yml │ │ ├── cops_chef_modernize_usecheflanguagesystemdhelper.yml │ │ ├── cops_chef_modernize_usemultipackageinstalls.yml │ │ ├── cops_chef_modernize_userequirerelative.yml │ │ ├── cops_chef_modernize_useszypperrepo.yml │ │ ├── cops_chef_modernize_whyrunsupportedtrue.yml │ │ ├── cops_chef_modernize_windowsregistryuac.yml │ │ ├── cops_chef_modernize_windowsscresource.yml │ │ ├── cops_chef_modernize_windowszipfileusage.yml │ │ ├── cops_chef_modernize_zipfileresource.yml │ │ ├── cops_chef_redundantcode_aptrepositorydistributiondefault.yml │ │ ├── cops_chef_redundantcode_aptrepositorynotifiesaptupdate.yml │ │ ├── cops_chef_redundantcode_attributemetadata.yml │ │ ├── cops_chef_redundantcode_conflictsmetadata.yml │ │ ├── cops_chef_redundantcode_customresourcewithallowedactions.yml │ │ ├── cops_chef_redundantcode_doublecompiletime.yml │ │ ├── cops_chef_redundantcode_groupingmetadata.yml │ │ ├── cops_chef_redundantcode_longdescriptionmetadata.yml │ │ ├── cops_chef_redundantcode_multipleplatformchecks.yml │ │ ├── cops_chef_redundantcode_namepropertyisrequired.yml │ │ ├── cops_chef_redundantcode_ohaiattributetostring.yml │ │ ├── cops_chef_redundantcode_propertysplatregex.yml │ │ ├── cops_chef_redundantcode_propertywithrequiredanddefault.yml │ │ ├── cops_chef_redundantcode_providesmetadata.yml │ │ ├── cops_chef_redundantcode_recipemetadata.yml │ │ ├── cops_chef_redundantcode_replacesmetadata.yml │ │ ├── cops_chef_redundantcode_resourcewithnothingaction.yml │ │ ├── cops_chef_redundantcode_sensitivepropertyinresource.yml │ │ ├── cops_chef_redundantcode_stringpropertywithnildefault.yml │ │ ├── cops_chef_redundantcode_suggestsmetadata.yml │ │ ├── cops_chef_redundantcode_unnecessarydesiredstate.yml │ │ ├── cops_chef_redundantcode_unnecessarynameproperty.yml │ │ ├── cops_chef_redundantcode_usecreateifmissing.yml │ │ ├── cops_chef_ruby_gemspeclicense.yml │ │ ├── cops_chef_ruby_gemspecrequirerubygems.yml │ │ ├── cops_chef_ruby_legacypowershelloutmethods.yml │ │ ├── cops_chef_ruby_requirenethttps.yml │ │ ├── cops_chef_ruby_unlessdefinedrequire.yml │ │ ├── cops_chef_security_sshprivatekey.yml │ │ ├── cops_chef_sharing_defaultmetadatamaintainer.yml │ │ ├── cops_chef_sharing_emptymetadatafield.yml │ │ ├── cops_chef_sharing_includepropertydescriptions.yml │ │ ├── cops_chef_sharing_includeresourcedescriptions.yml │ │ ├── cops_chef_sharing_includeresourceexamples.yml │ │ ├── cops_chef_sharing_insecurecookbookurl.yml │ │ ├── cops_chef_sharing_invalidlicensestring.yml │ │ ├── cops_chef_style_attributekeys.yml │ │ ├── cops_chef_style_chefwhaaat.yml │ │ ├── cops_chef_style_commentformat.yml │ │ ├── cops_chef_style_commentsentencespacing.yml │ │ ├── cops_chef_style_copyrightcommentformat.yml │ │ ├── cops_chef_style_defaultcopyrightcomments.yml │ │ ├── cops_chef_style_filemode.yml │ │ ├── cops_chef_style_immediatenotificationtiming.yml │ │ ├── cops_chef_style_includerecipewithparentheses.yml │ │ ├── cops_chef_style_negatingonlyif.yml │ │ ├── cops_chef_style_overlycomplexsupportsdependsmetadata.yml │ │ ├── cops_chef_style_simplifyplatformmajorversioncheck.yml │ │ ├── cops_chef_style_trueclassfalseclassresourceproperties.yml │ │ ├── cops_chef_style_unnecessaryoscheck.yml │ │ ├── cops_chef_style_unnecessaryplatformcasestatement.yml │ │ ├── cops_chef_style_useplatformhelpers.yml │ │ ├── cops_inspec_deprecations_attributedefault.yml │ │ └── cops_inspec_deprecations_attributehelper.yml └── go.mod ├── docs ├── cops.md ├── cops_chef_correctness.md ├── cops_chef_deprecations.md ├── cops_chef_effortless.md ├── cops_chef_modernize.md ├── cops_chef_redundantcode.md ├── cops_chef_sharing.md └── cops_chef_style.md ├── habitat ├── plan.ps1 ├── plan.sh └── tests │ ├── test.ps1 │ └── test.sh ├── lib ├── cookstyle.rb ├── cookstyle │ ├── chefstyle.rb │ └── version.rb └── rubocop │ ├── chef.rb │ ├── chef │ ├── autocorrect_helpers.rb │ ├── cookbook_helpers.rb │ ├── cookbook_only.rb │ └── platform_helpers.rb │ ├── cop │ ├── chef │ │ ├── correctness │ │ │ ├── block_guard_clause_string_only.rb │ │ │ ├── chef_application_fatal.rb │ │ │ ├── conditional_ruby_shellout.rb │ │ │ ├── dnf_package_allow_downgrades.rb │ │ │ ├── empty_resource_guard.rb │ │ │ ├── incorrect_library_injection.rb │ │ │ ├── invalid_cookbook_name.rb │ │ │ ├── invalid_default_action.rb │ │ │ ├── invalid_notification_resource.rb │ │ │ ├── invalid_notification_timing.rb │ │ │ ├── invalid_platform_family_helper.rb │ │ │ ├── invalid_platform_family_values_in_case.rb │ │ │ ├── invalid_platform_helper.rb │ │ │ ├── invalid_platform_metadata.rb │ │ │ ├── invalid_platform_values_in_case.rb │ │ │ ├── invalid_value_for_platform_family_helper.rb │ │ │ ├── invalid_value_for_platform_helper.rb │ │ │ ├── invalid_version_metadata.rb │ │ │ ├── lazy_eval_node_attribute_defaults.rb │ │ │ ├── lazy_in_resource_guard.rb │ │ │ ├── macos_userdefaults_invalid_type.rb │ │ │ ├── malformed_value_for_platform.rb │ │ │ ├── metadata_malformed_version.rb │ │ │ ├── metadata_missing_name.rb │ │ │ ├── metadata_missing_version.rb │ │ │ ├── node_normal.rb │ │ │ ├── node_normal_unless.rb │ │ │ ├── node_save.rb │ │ │ ├── notifies_action_not_symbol.rb │ │ │ ├── octal_mode_as_string.rb │ │ │ ├── openssl_password_helpers.rb │ │ │ ├── powershell_delete_file.rb │ │ │ ├── powershell_file_exists.rb │ │ │ ├── property_without_type.rb │ │ │ ├── resource_sets_internal_properties.rb │ │ │ ├── resource_sets_name_property.rb │ │ │ ├── resource_with_none_action.rb │ │ │ ├── scoped_file_exist.rb │ │ │ ├── service_resource.rb │ │ │ ├── supports_must_be_float.rb │ │ │ └── tmp_path.rb │ │ ├── deprecation │ │ │ ├── cb_depends_on_self.rb │ │ │ ├── chef_handler_recipe.rb │ │ │ ├── chef_handler_supports.rb │ │ │ ├── chef_rest.rb │ │ │ ├── chef_rewind.rb │ │ │ ├── chef_shellout.rb │ │ │ ├── chef_sugar_helpers.rb │ │ │ ├── chef_windows_platform_helper.rb │ │ │ ├── chefdk_generators.rb │ │ │ ├── cheffile.rb │ │ │ ├── chefspec_coverage_report.rb │ │ │ ├── chefspec_legacy_runner.rb │ │ │ ├── chocolatey_package_uninstall_action.rb │ │ │ ├── delivery.rb │ │ │ ├── depends_chef_nginx_cookbook.rb │ │ │ ├── depends_chef_reporting_cookbook.rb │ │ │ ├── depends_compat_resource.rb │ │ │ ├── depends_omnibus_updater_cookbook.rb │ │ │ ├── depends_partial_search.rb │ │ │ ├── depends_poise.rb │ │ │ ├── deprecated_chefspec_platform.rb │ │ │ ├── deprecated_mixins.rb │ │ │ ├── deprecated_platform_methods.rb │ │ │ ├── deprecated_shellout_methods.rb │ │ │ ├── deprecated_sudo_actions.rb │ │ │ ├── deprecated_windows_version_check.rb │ │ │ ├── deprecated_yum_repository_actions.rb │ │ │ ├── deprecated_yum_repository_properties.rb │ │ │ ├── easy_install.rb │ │ │ ├── eol_audit_mode.rb │ │ │ ├── epic_fail.rb │ │ │ ├── erl_call.rb │ │ │ ├── execute_path_property.rb │ │ │ ├── execute_relative_creates_without_cwd.rb │ │ │ ├── foodcritic_file.rb │ │ │ ├── foodcritic_testing.rb │ │ │ ├── hwrp_without_provides.rb │ │ │ ├── hwrp_without_unified_mode_true.rb │ │ │ ├── inherits_compat_resource.rb │ │ │ ├── launchd_deprecated_hash_property.rb │ │ │ ├── legacy_notify_syntax.rb │ │ │ ├── legacy_yum_cookbook_recipes.rb │ │ │ ├── librarian_chefspec.rb │ │ │ ├── locale_lc_all_property.rb │ │ │ ├── log_resource_notifications.rb │ │ │ ├── macos_userdefaults_global_property.rb │ │ │ ├── name_property_and_default.rb │ │ │ ├── node_deep_fetch.rb │ │ │ ├── node_methods_not_attributes.rb │ │ │ ├── node_set.rb │ │ │ ├── node_set_unless.rb │ │ │ ├── node_set_without_level.rb │ │ │ ├── partial_search_class_usage.rb │ │ │ ├── partial_search_helper_usage.rb │ │ │ ├── poise_archive.rb │ │ │ ├── policyfile_community_source.rb │ │ │ ├── powershell_cookbook_helpers.rb │ │ │ ├── require_recipe.rb │ │ │ ├── resource_overrides_provides_method.rb │ │ │ ├── resource_uses_dsl_name_method.rb │ │ │ ├── resource_uses_only_resource_name.rb │ │ │ ├── resource_uses_provider_base_method.rb │ │ │ ├── resource_uses_updated_method.rb │ │ │ ├── resource_without_unified_mode_true.rb │ │ │ ├── ruby_27_keyword_argument_warnings.rb │ │ │ ├── ruby_block_create_action.rb │ │ │ ├── run_command_helper.rb │ │ │ ├── search_uses_positional_parameters.rb │ │ │ ├── use_automatic_resource_name.rb │ │ │ ├── use_inline_resources.rb │ │ │ ├── use_yaml_dump.rb │ │ │ ├── user_supports_property.rb │ │ │ ├── verify_property_file_expansion.rb │ │ │ ├── windows_feature_servermanagercmd.rb │ │ │ ├── windows_package_installer_type_string.rb │ │ │ ├── windows_task_change_action.rb │ │ │ ├── windows_version_helpers.rb │ │ │ ├── xml_ruby_recipe.rb │ │ │ └── yum_dnf_compat_recipe.rb │ │ ├── effortless │ │ │ ├── berksfile.rb │ │ │ ├── chef_vault_used.rb │ │ │ ├── data_bags.rb │ │ │ ├── depends_chef_vault.rb │ │ │ ├── node_environment.rb │ │ │ ├── node_policygroup.rb │ │ │ ├── node_roles.rb │ │ │ ├── search_for_environments_or_roles.rb │ │ │ └── search_used.rb │ │ ├── modernize │ │ │ ├── action_method_in_resource.rb │ │ │ ├── allowed_actions_initializer.rb │ │ │ ├── apt_default_recipe.rb │ │ │ ├── berksfile_source.rb │ │ │ ├── build_essential.rb │ │ │ ├── chef_14_resources.rb │ │ │ ├── chef_15_resources.rb │ │ │ ├── chef_gem_nokogiri.rb │ │ │ ├── class_eval_action_class.rb │ │ │ ├── compile_time_resources.rb │ │ │ ├── conditional_using_test.rb │ │ │ ├── cron_d_file_or_template.rb │ │ │ ├── cron_manage_resource.rb │ │ │ ├── databag_helpers.rb │ │ │ ├── declare_action_class.rb │ │ │ ├── default_action_initializer.rb │ │ │ ├── defines_chefspec_matchers.rb │ │ │ ├── definitions.rb │ │ │ ├── depends_chef_vault_cookbook.rb │ │ │ ├── depends_chocolatey_cookbooks.rb │ │ │ ├── depends_kernel_module_cookbook.rb │ │ │ ├── depends_locale_cookbook.rb │ │ │ ├── depends_openssl_cookbook.rb │ │ │ ├── depends_timezone_lwrp_cookbook.rb │ │ │ ├── depends_windows_firewall_cookbook.rb │ │ │ ├── depends_zypper_cookbook.rb │ │ │ ├── dsl_include_in_resource.rb │ │ │ ├── empty_resource_initialize.rb │ │ │ ├── execute_apt_update.rb │ │ │ ├── execute_sc_exe.rb │ │ │ ├── execute_sleep.rb │ │ │ ├── execute_sysctl.rb │ │ │ ├── execute_tzutil.rb │ │ │ ├── foodcritic_comments.rb │ │ │ ├── if_provides_default_action.rb │ │ │ ├── includes_mixin_shellout.rb │ │ │ ├── libarchive_file.rb │ │ │ ├── macos_user_defaults.rb │ │ │ ├── minitest_handler_usage.rb │ │ │ ├── node_init_package.rb │ │ │ ├── node_roles_include.rb │ │ │ ├── ohai_default_recipe.rb │ │ │ ├── openssl_rsa_key_resource.rb │ │ │ ├── openssl_x509_resource.rb │ │ │ ├── osx_config_profile_resource.rb │ │ │ ├── powershell_expand_archive.rb │ │ │ ├── powershell_guard_interpreter.rb │ │ │ ├── powershell_install_package.rb │ │ │ ├── powershell_install_windowsfeature.rb │ │ │ ├── property_with_name_attribute.rb │ │ │ ├── provides_initializer.rb │ │ │ ├── resource_name_initializer.rb │ │ │ ├── resource_set_or_return.rb │ │ │ ├── resource_with_attributes.rb │ │ │ ├── respond_to_compile_time.rb │ │ │ ├── respond_to_metadata.rb │ │ │ ├── respond_to_provides.rb │ │ │ ├── respond_to_resource_name.rb │ │ │ ├── sc_windows_resource.rb │ │ │ ├── seven_zip_archive.rb │ │ │ ├── shell_out_helper.rb │ │ │ ├── shellouts_to_chocolatey.rb │ │ │ ├── simplify_apt_ppa_setup.rb │ │ │ ├── sysctl_param_resource.rb │ │ │ ├── unnecessary_mixlib_shellout_require.rb │ │ │ ├── use_chef_language_cloud_helpers.rb │ │ │ ├── use_chef_language_env_helpers.rb │ │ │ ├── use_chef_language_systemd_helper.rb │ │ │ ├── use_multipackage_installs.rb │ │ │ ├── use_require_relative.rb │ │ │ ├── whyrun_supported_true.rb │ │ │ ├── windows_default_recipe.rb │ │ │ ├── windows_registry_uac.rb │ │ │ ├── windows_zipfile.rb │ │ │ ├── zipfile_resource.rb │ │ │ └── zypper_repo.rb │ │ ├── redundant │ │ │ ├── apt_repository_distribution_default.rb │ │ │ ├── apt_repository_notifies_apt_update.rb │ │ │ ├── attribute_metadata.rb │ │ │ ├── conflicts_metadata.rb │ │ │ ├── custom_resource_with_allowed_actions.rb │ │ │ ├── double_compile_time.rb │ │ │ ├── grouping_metadata.rb │ │ │ ├── long_description_metadata.rb │ │ │ ├── multiple_platform_checks.rb │ │ │ ├── name_property_and_required.rb │ │ │ ├── ohai_attribute_to_string.rb │ │ │ ├── property_splat_regex.rb │ │ │ ├── property_with_default_and_required.rb │ │ │ ├── provides_metadata.rb │ │ │ ├── recipe_metadata.rb │ │ │ ├── replaces_metadata.rb │ │ │ ├── resource_with_nothing_action.rb │ │ │ ├── sensitive_property_in_resource.rb │ │ │ ├── string_property_with_nil_default.rb │ │ │ ├── suggests_metadata.rb │ │ │ ├── unnecessary_desired_state.rb │ │ │ ├── unnecessary_name_property.rb │ │ │ └── use_create_if_missing.rb │ │ ├── security │ │ │ └── ssh_private_key.rb │ │ ├── sharing │ │ │ ├── default_maintainer_metadata.rb │ │ │ ├── empty_metadata_field.rb │ │ │ ├── include_property_descriptions.rb │ │ │ ├── include_resource_descriptions.rb │ │ │ ├── include_resource_examples.rb │ │ │ ├── insecure_cookbook_url.rb │ │ │ └── invalid_license_string.rb │ │ └── style │ │ │ ├── attribute_keys.rb │ │ │ ├── chef_whaaat.rb │ │ │ ├── comment_sentence_spacing.rb │ │ │ ├── comments_copyright_format.rb │ │ │ ├── comments_default_copyright.rb │ │ │ ├── comments_format.rb │ │ │ ├── file_mode.rb │ │ │ ├── immediate_notification_timing.rb │ │ │ ├── include_recipe_with_parentheses.rb │ │ │ ├── negating_only_if.rb │ │ │ ├── overly_complex_supports_depends_metadata.rb │ │ │ ├── simplify_platform_major_version_check.rb │ │ │ ├── true_false_resource_properties.rb │ │ │ ├── unnecessary_os_check.rb │ │ │ ├── unnecessary_platform_case_statement.rb │ │ │ └── use_platform_helpers.rb │ ├── chefstyle │ │ └── ruby │ │ │ ├── gemspec_license.rb │ │ │ ├── gemspec_require_rubygems.rb │ │ │ ├── legacy_powershell_out_methods.rb │ │ │ ├── require_net_https.rb │ │ │ └── unless_defined_require.rb │ ├── inspec │ │ └── deprecation │ │ │ ├── attribute_default.rb │ │ │ └── attribute_helper.rb │ └── target_chef_version.rb │ └── monkey_patches │ ├── allow_invalid_ruby.rb │ ├── base.rb │ ├── config.rb │ ├── directive_comment.rb │ ├── registry_cop.rb │ └── team.rb ├── spec ├── rubocop │ ├── chef │ │ └── cookbook_helpers_spec.rb │ ├── cop │ │ ├── chef │ │ │ ├── correctness │ │ │ │ ├── block_guard_clause_string_only_spec.rb │ │ │ │ ├── chef_application_fatal_spec.rb │ │ │ │ ├── conditional_ruby_shellout_spec.rb │ │ │ │ ├── dnf_package_allow_downgrades_spec.rb │ │ │ │ ├── empty_resource_guard_spec.rb │ │ │ │ ├── incorrect_library_injection_spec.rb │ │ │ │ ├── invalid_cookbook_name_spec.rb │ │ │ │ ├── invalid_default_action_spec.rb │ │ │ │ ├── invalid_notification_resource_spec.rb │ │ │ │ ├── invalid_notification_timing_spec.rb │ │ │ │ ├── invalid_platform_family_helper_spec.rb │ │ │ │ ├── invalid_platform_family_values_in_case_spec.rb │ │ │ │ ├── invalid_platform_helper_spec.rb │ │ │ │ ├── invalid_platform_metadata_spec.rb │ │ │ │ ├── invalid_platform_values_in_case_spec.rb │ │ │ │ ├── invalid_value_for_platform_family_helper_spec.rb │ │ │ │ ├── invalid_value_for_platform_helper_spec.rb │ │ │ │ ├── invalid_version_metadata_spec.rb │ │ │ │ ├── lazy_eval_node_attribute_defaults_spec.rb │ │ │ │ ├── lazy_in_resource_guard_spec.rb │ │ │ │ ├── macos_userdefaults_invalid_type_spec.rb │ │ │ │ ├── malformed_value_for_platform_spec.rb │ │ │ │ ├── metadata_malformed_depends_spec.rb │ │ │ │ ├── metadata_missing_name_spec.rb │ │ │ │ ├── metadata_missing_version.rb │ │ │ │ ├── node_normal_spec.rb │ │ │ │ ├── node_normal_unless_spec.rb │ │ │ │ ├── node_save_spec.rb │ │ │ │ ├── notifies_action_not_symbol_spec.rb │ │ │ │ ├── octal_mode_as_string_spec.rb │ │ │ │ ├── openssl_password_helpers_spec.rb │ │ │ │ ├── powershell_delete_file_spec.rb │ │ │ │ ├── powershell_file_exists_spec.rb │ │ │ │ ├── property_without_type_spec.rb │ │ │ │ ├── resource_sets_internal_properties_spec.rb │ │ │ │ ├── resource_sets_name_property_spec.rb │ │ │ │ ├── resource_with_none_action_spec.rb │ │ │ │ ├── scoped_file_exist_spec.rb │ │ │ │ ├── service_resource_spec.rb │ │ │ │ ├── supports_must_be_float_spec.rb │ │ │ │ └── tmp_path_spec.rb │ │ │ ├── deprecation │ │ │ │ ├── cb_depends_on_self_spec.rb │ │ │ │ ├── chef_handler_recipe_spec.rb │ │ │ │ ├── chef_handler_supports_spec.rb │ │ │ │ ├── chef_rest_spec.rb │ │ │ │ ├── chef_rewind_spec.rb │ │ │ │ ├── chef_shellout_spec.rb │ │ │ │ ├── chef_sugar_helpers_spec.rb │ │ │ │ ├── chef_windows_platform_helper_spec.rb │ │ │ │ ├── chefdk_generators_spec.rb │ │ │ │ ├── cheffile_spec.rb │ │ │ │ ├── chefspec_coverage_report_spec.rb │ │ │ │ ├── chefspec_legacy_runner_spec.rb │ │ │ │ ├── chocolatey_package_uninstall_action_spec.rb │ │ │ │ ├── delivery_spec.rb │ │ │ │ ├── depends_chef_nginx_cookbook_spec.rb │ │ │ │ ├── depends_chef_reporting_cookbook_spec.rb │ │ │ │ ├── depends_compat_resource_spec.rb │ │ │ │ ├── depends_omnibus_updater_cookbook_spec.rb │ │ │ │ ├── depends_partial_search_spec.rb │ │ │ │ ├── depends_poise_spec.rb │ │ │ │ ├── deprecated_chefspec_platform_spec.rb │ │ │ │ ├── deprecated_mixins_spec.rb │ │ │ │ ├── deprecated_platform_methods_spec.rb │ │ │ │ ├── deprecated_shellout_methods_spec.rb │ │ │ │ ├── deprecated_sudo_actions_spec.rb │ │ │ │ ├── deprecated_windows_version_check_spec.rb │ │ │ │ ├── deprecated_yum_repository_actions_spec.rb │ │ │ │ ├── deprecated_yum_repository_properties_spec.rb │ │ │ │ ├── easy_install_spec.rb │ │ │ │ ├── eol_audit_mode_spec.rb │ │ │ │ ├── epic_fail_spec.rb │ │ │ │ ├── erl_call_spec.rb │ │ │ │ ├── execute_path_property_spec.rb │ │ │ │ ├── execute_relative_creates_without_cwd_spec.rb │ │ │ │ ├── foodcritic_file_spec.rb │ │ │ │ ├── foodcritic_testing_spec.rb │ │ │ │ ├── hwrp_without_provides_spec.rb │ │ │ │ ├── hwrp_without_unified_mode_true_spec.rb │ │ │ │ ├── inherits_compat_resource_spec.rb │ │ │ │ ├── launchd_deprecated_hash_property_spec.rb │ │ │ │ ├── legacy_notify_syntax_spec.rb │ │ │ │ ├── legacy_yum_cookbook_spec.rb │ │ │ │ ├── librarian_chefspec_spec.rb │ │ │ │ ├── locale_lc_all_property_spec.rb │ │ │ │ ├── log_resource_notification_spec.rb │ │ │ │ ├── macos_userdefaults_global_property_spec.rb │ │ │ │ ├── name_property_and_default_spec.rb │ │ │ │ ├── node_deep_fetch_spec.rb │ │ │ │ ├── node_methods_not_attributes_spec.rb │ │ │ │ ├── node_set_spec.rb │ │ │ │ ├── node_set_unless_spec.rb │ │ │ │ ├── node_set_without_level_spec.rb │ │ │ │ ├── partial_search_class_usage_spec.rb │ │ │ │ ├── partial_search_helper_usage_spec.rb │ │ │ │ ├── poise_archive_spec.rb │ │ │ │ ├── policyfile_community_source_spec.rb │ │ │ │ ├── powershell_cookbook_helpers_spec.rb │ │ │ │ ├── require_recipe_spec.rb │ │ │ │ ├── resource_overrides_provides_method_spec.rb │ │ │ │ ├── resource_uses_dsl_name_method_spec.rb │ │ │ │ ├── resource_uses_only_resource_name_spec.rb │ │ │ │ ├── resource_uses_provider_base_method_spec.rb │ │ │ │ ├── resource_uses_updated_method_spec.rb │ │ │ │ ├── resource_without_unified_mode_true_spec.rb │ │ │ │ ├── ruby_27_keyword_argument_warnings_spec.rb │ │ │ │ ├── ruby_block_create_action_spec.rb │ │ │ │ ├── run_command_helper_spec.rb │ │ │ │ ├── search_uses_positional_parameters_spec.rb │ │ │ │ ├── use_automatic_resource_name_spec.rb │ │ │ │ ├── use_inline_resources_spec.rb │ │ │ │ ├── use_yaml_dump_spec.rb │ │ │ │ ├── user_supports_property_spec.rb │ │ │ │ ├── verify_property_file_expansion_spec.rb │ │ │ │ ├── windows_feature_servermanagercmd_spec.rb │ │ │ │ ├── windows_package_installer_type_string_spec.rb │ │ │ │ ├── windows_task_change_action_spec.rb │ │ │ │ ├── windows_version_helpers_spec.rb │ │ │ │ ├── xml_ruby_recipe_spec.rb │ │ │ │ └── yum_dnf_compat_recipe_spec.rb │ │ │ ├── effortless │ │ │ │ ├── Berksfile_spec.rb │ │ │ │ ├── chef_vault_used_spec.rb │ │ │ │ ├── data_bag_used_spec.rb │ │ │ │ ├── depends_chef_vault_spec.rb │ │ │ │ ├── node_environment_spec.rb │ │ │ │ ├── node_policygroup_spec.rb │ │ │ │ ├── node_roles_spec.rb │ │ │ │ ├── search_for_environments_or_roles_spec.rb │ │ │ │ └── search_used_spec.rb │ │ │ ├── modernize │ │ │ │ ├── action_method_in_resource_spec.rb │ │ │ │ ├── allowed_actions_initializer_spec.rb │ │ │ │ ├── apt_default_recipe_spec.rb │ │ │ │ ├── berksfile_source_spec.rb │ │ │ │ ├── build_essential_spec.rb │ │ │ │ ├── chef_14_resources_spec.rb │ │ │ │ ├── chef_15_resources_spec.rb │ │ │ │ ├── chef_gem_nokogiri_spec.rb │ │ │ │ ├── class_eval_action_class_spec.rb │ │ │ │ ├── compile_time_resources_spec.rb │ │ │ │ ├── conditional_using_test_spec.rb │ │ │ │ ├── cron_d_file_or_template_spec.rb │ │ │ │ ├── cron_manage_resource_spec.rb │ │ │ │ ├── databag_helpers_spec.rb │ │ │ │ ├── declare_action_class_spec.rb │ │ │ │ ├── default_action_initializer_spec.rb │ │ │ │ ├── defines_chefspec_matchers_spec.rb │ │ │ │ ├── definitions_spec.rb │ │ │ │ ├── depends_chef_vault_cookbook_spec.rb │ │ │ │ ├── depends_chocolatey_cookbooks_spec.rb │ │ │ │ ├── depends_kernel_module_cookbook_spec.rb │ │ │ │ ├── depends_locale_cookbook_spec.rb │ │ │ │ ├── depends_openssl_cookbook_spec.rb │ │ │ │ ├── depends_timezone_lwrp_cookbook_spec.rb │ │ │ │ ├── depends_windows_firewall_cookbook_spec.rb │ │ │ │ ├── depends_zypper_cookbook_spec.rb │ │ │ │ ├── dsl_include_in_resource_spec.rb │ │ │ │ ├── empty_resource_initialize_spec.rb │ │ │ │ ├── execute_apt_update_spec.rb │ │ │ │ ├── execute_sc_exe_spec.rb │ │ │ │ ├── execute_sleep_spec.rb │ │ │ │ ├── execute_sysctl_spec.rb │ │ │ │ ├── execute_tzutil_spec.rb │ │ │ │ ├── foodcritic_comments_spec.rb │ │ │ │ ├── if_provides_default_action_spec.rb │ │ │ │ ├── includes_mixin_shellout_spec.rb │ │ │ │ ├── libarchive_file_spec.rb │ │ │ │ ├── macos_user_defaults_spec.rb │ │ │ │ ├── minitest_handler_usage_spec.rb │ │ │ │ ├── node_init_package_spec.rb │ │ │ │ ├── node_roles_include_spec.rb │ │ │ │ ├── ohai_default_recipe_spec.rb │ │ │ │ ├── openssl_rsa_key_resource_spec.rb │ │ │ │ ├── openssl_x509_resource_spec.rb │ │ │ │ ├── osx_config_profile_resource_spec.rb │ │ │ │ ├── powershell_expand_archive_spec.rb │ │ │ │ ├── powershell_guard_interpreter_spec.rb │ │ │ │ ├── powershell_install_package_spec.rb │ │ │ │ ├── powershell_install_windowsfeature_spec.rb │ │ │ │ ├── property_with_name_attribute_spec.rb │ │ │ │ ├── provides_initializer_spec.rb │ │ │ │ ├── resource_name_initializer_spec.rb │ │ │ │ ├── resource_set_or_return_spec.rb │ │ │ │ ├── resource_with_attributes_spec.rb │ │ │ │ ├── respond_to_compile_time_spec.rb │ │ │ │ ├── respond_to_metadata_spec.rb │ │ │ │ ├── respond_to_provides_spec.rb │ │ │ │ ├── respond_to_resource_name_spec.rb │ │ │ │ ├── sc_windows_resource_spec.rb │ │ │ │ ├── seven_zip_archive_spec.rb │ │ │ │ ├── shell_out_helper_spec.rb │ │ │ │ ├── shellout_to_chocolatey_spec.rb │ │ │ │ ├── simplify_apt_ppa_setup_spec.rb │ │ │ │ ├── systctl_param_resource_spec.rb │ │ │ │ ├── unnecessary_mixlib_shellout_require_spec.rb │ │ │ │ ├── use_chef_language_cloud_helpers_spec.rb │ │ │ │ ├── use_chef_language_env_helpers_spec.rb │ │ │ │ ├── use_chef_language_systemd_helper_spec.rb │ │ │ │ ├── use_multipackage_installs_spec.rb │ │ │ │ ├── use_require_relative_spec.rb │ │ │ │ ├── whyrun_supported_true_spec.rb │ │ │ │ ├── windows_default_recipe_spec.rb │ │ │ │ ├── windows_registry_uac_spec.rb │ │ │ │ ├── windows_zipfile_spec.rb │ │ │ │ ├── zipfile_resource_spec.rb │ │ │ │ └── zypper_repo_spec.rb │ │ │ ├── redundant │ │ │ │ ├── apt_repository_distribution_default_spec.rb │ │ │ │ ├── apt_repository_notifies_apt_update_spec.rb │ │ │ │ ├── attribute_metadata_spec.rb │ │ │ │ ├── conflicts_metadata_spec.rb │ │ │ │ ├── custom_resource_with_allowed_actions_spec.rb │ │ │ │ ├── double_compile_time_spec.rb │ │ │ │ ├── grouping_metadata_spec.rb │ │ │ │ ├── long_description_metadata_spec.rb │ │ │ │ ├── multiple_platform_checks_spec.rb │ │ │ │ ├── name_property_and_required_spec.rb │ │ │ │ ├── ohai_attribute_to_string_spec.rb │ │ │ │ ├── property_splat_regex_spec.rb │ │ │ │ ├── property_with_default_and_required_spec.rb │ │ │ │ ├── provides_metadata_spec.rb │ │ │ │ ├── recipe_metadata_spec.rb │ │ │ │ ├── replaces_metadata_spec.rb │ │ │ │ ├── resource_with_nothing_action_spec.rb │ │ │ │ ├── sensitive_property_in_resource_spec.rb │ │ │ │ ├── string_property_with_nil_default_spec.rb │ │ │ │ ├── suggests_metadata_spec.rb │ │ │ │ ├── unnecessary_desired_state_spec.rb │ │ │ │ ├── unnecessary_name_property_spec.rb │ │ │ │ └── use_create_if_missing_spec.rb │ │ │ ├── ruby │ │ │ │ ├── chefspec_license_spec.rb │ │ │ │ ├── gemspec_require_rubygems_spec.rb │ │ │ │ ├── legacy_powershell_out_methods_spec.rb │ │ │ │ ├── require_net_https_spec.rb │ │ │ │ └── unless_defined_require_spec.rb │ │ │ ├── security │ │ │ │ └── ssh_private_key_spec.rb │ │ │ ├── sharing │ │ │ │ ├── default_maintainer_metadata_spec.rb │ │ │ │ ├── empty_metadata_field_spec.rb │ │ │ │ ├── include_property_descriptions_spec.rb │ │ │ │ ├── include_resource_descriptions_spec.rb │ │ │ │ ├── include_resource_examples_spec.rb │ │ │ │ ├── insecure_cookbook_url_spec.rb │ │ │ │ └── invalid_license_string_spec.rb │ │ │ └── style │ │ │ │ ├── attribute_keys_spec.rb │ │ │ │ ├── file_mode_spec.rb │ │ │ │ ├── immediate_notification_timing_spec.rb │ │ │ │ ├── include_recipe_with_parentheses_spec.rb │ │ │ │ ├── negating_only_if_spec.rb │ │ │ │ ├── overly_complex_supports_depends_metadata_spec.rb │ │ │ │ ├── simplify_platform_major_version_check_spec.rb │ │ │ │ ├── true_false_resource_properties_spec.rb │ │ │ │ ├── unnecessary_os_check_spec.rb │ │ │ │ ├── unnecessary_platform_case_statement_spec.rb │ │ │ │ └── use_platform_helpers_spec.rb │ │ └── inspec │ │ │ ├── attribute_default_spec.rb │ │ │ └── attribute_helper_spec.rb │ └── monkey_patches │ │ ├── cookstyle_comment_spec.rb │ │ └── migration_departmentname_spec.rb ├── shared │ └── autocorrect_behavior.rb └── spec_helper.rb └── tasks ├── cops_documentation.rake ├── prof.rake └── spellcheck.rake /.buildkite/hooks/pre-command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/.buildkite/hooks/pre-command -------------------------------------------------------------------------------- /.expeditor/build.habitat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/.expeditor/build.habitat.yml -------------------------------------------------------------------------------- /.expeditor/build_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/.expeditor/build_docs.sh -------------------------------------------------------------------------------- /.expeditor/buildkite/artifact.habitat.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/.expeditor/buildkite/artifact.habitat.test.ps1 -------------------------------------------------------------------------------- /.expeditor/buildkite/artifact.habitat.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/.expeditor/buildkite/artifact.habitat.test.sh -------------------------------------------------------------------------------- /.expeditor/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/.expeditor/config.yml -------------------------------------------------------------------------------- /.expeditor/habitat-test.pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/.expeditor/habitat-test.pipeline.yml -------------------------------------------------------------------------------- /.expeditor/update_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/.expeditor/update_version.sh -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/.github/ISSUE_TEMPLATE/BUG_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/DESIGN_PROPOSAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/.github/ISSUE_TEMPLATE/DESIGN_PROPOSAL.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/NEW_COP_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/.github/ISSUE_TEMPLATE/NEW_COP_REQUEST.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/.github/mcp.json -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/unit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/.github/workflows/unit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 8.5.2 -------------------------------------------------------------------------------- /bin/cookstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/bin/cookstyle -------------------------------------------------------------------------------- /bin/cookstyle-profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/bin/cookstyle-profile -------------------------------------------------------------------------------- /config/chefstyle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/config/chefstyle.yml -------------------------------------------------------------------------------- /config/cookstyle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/config/cookstyle.yml -------------------------------------------------------------------------------- /config/default.yml: -------------------------------------------------------------------------------- 1 | inherit_from: 2 | - cookstyle.yml 3 | -------------------------------------------------------------------------------- /cookstyle.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/cookstyle.gemspec -------------------------------------------------------------------------------- /cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/cspell.json -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_correctness_chefapplicationfatal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_correctness_chefapplicationfatal.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_correctness_conditionalrubyshellout.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_correctness_conditionalrubyshellout.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_correctness_cookbookusesnodesave.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_correctness_cookbookusesnodesave.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_correctness_emptyresourceguard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_correctness_emptyresourceguard.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_correctness_invalidcookbookname.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_correctness_invalidcookbookname.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_correctness_invaliddefaultaction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_correctness_invaliddefaultaction.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_correctness_invalidplatformhelper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_correctness_invalidplatformhelper.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_correctness_invalidplatformincase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_correctness_invalidplatformincase.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_correctness_invalidplatformmetadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_correctness_invalidplatformmetadata.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_correctness_invalidversionmetadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_correctness_invalidversionmetadata.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_correctness_lazyinresourceguard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_correctness_lazyinresourceguard.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_correctness_metadatamissingname.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_correctness_metadatamissingname.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_correctness_metadatamissingversion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_correctness_metadatamissingversion.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_correctness_nodenormal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_correctness_nodenormal.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_correctness_nodenormalunless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_correctness_nodenormalunless.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_correctness_notifiesactionnotsymbol.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_correctness_notifiesactionnotsymbol.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_correctness_octalmodeasstring.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_correctness_octalmodeasstring.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_correctness_opensslpasswordhelpers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_correctness_opensslpasswordhelpers.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_correctness_powershellfileexists.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_correctness_powershellfileexists.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_correctness_propertywithouttype.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_correctness_propertywithouttype.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_correctness_resourcewithnoneaction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_correctness_resourcewithnoneaction.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_correctness_scopedfileexist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_correctness_scopedfileexist.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_correctness_serviceresource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_correctness_serviceresource.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_correctness_supportsmustbefloat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_correctness_supportsmustbefloat.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_correctness_tmppath.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_correctness_tmppath.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_chefdkgenerators.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_chefdkgenerators.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_cheffile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_cheffile.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_chefhandlerrecipe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_chefhandlerrecipe.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_chefrewind.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_chefrewind.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_chefshellout.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_chefshellout.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_chefspeccoveragereport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_chefspeccoveragereport.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_chefspeclegacyrunner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_chefspeclegacyrunner.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_chefsugarhelpers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_chefsugarhelpers.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_cookbookdependsonpoise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_cookbookdependsonpoise.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_cookbooksdependsonself.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_cookbooksdependsonself.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_delivery.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_delivery.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_deprecatedsudoactions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_deprecatedsudoactions.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_easyinstallresource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_easyinstallresource.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_eolauditmodeusage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_eolauditmodeusage.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_epicfail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_epicfail.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_erlcallresource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_erlcallresource.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_executepathproperty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_executepathproperty.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_foodcriticfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_foodcriticfile.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_foodcritictesting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_foodcritictesting.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_hwrpwithoutprovides.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_hwrpwithoutprovides.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_hwrpwithoutunifiedtrue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_hwrpwithoutunifiedtrue.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_includingxmlrubyrecipe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_includingxmlrubyrecipe.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_legacynotifysyntax.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_legacynotifysyntax.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_librarianchefspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_librarianchefspec.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_nodedeepfetch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_nodedeepfetch.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_nodeset.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_nodesetunless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_nodesetunless.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_nodesetwithoutlevel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_nodesetwithoutlevel.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_poisearchiveusage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_poisearchiveusage.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_requirerecipe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_requirerecipe.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_rubyblockcreateaction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_rubyblockcreateaction.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_useschefresthelpers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_useschefresthelpers.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_usesdeprecatedmixins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_usesdeprecatedmixins.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_usesruncommandhelper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_usesruncommandhelper.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_useyamldump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_useyamldump.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_deprecations_windowsversionhelpers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_deprecations_windowsversionhelpers.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_effortless_berksfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_effortless_berksfile.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_effortless_chefvaultused.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_effortless_chefvaultused.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_effortless_cookbookusesdatabags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_effortless_cookbookusesdatabags.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_effortless_cookbookusesenvironments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_effortless_cookbookusesenvironments.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_effortless_cookbookusespolicygroups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_effortless_cookbookusespolicygroups.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_effortless_cookbookusesroles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_effortless_cookbookusesroles.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_effortless_cookbookusessearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_effortless_cookbookusessearch.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_effortless_dependschefvault.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_effortless_dependschefvault.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_actionmethodinresource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_actionmethodinresource.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_chefgemnokogiri.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_chefgemnokogiri.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_classevalactionclass.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_classevalactionclass.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_conditionalusingtest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_conditionalusingtest.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_crondfileortemplate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_crondfileortemplate.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_cronmanageresource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_cronmanageresource.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_databaghelpers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_databaghelpers.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_declareactionclass.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_declareactionclass.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_defineschefspecmatchers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_defineschefspecmatchers.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_definitions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_definitions.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_dependsonlocalecookbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_dependsonlocalecookbook.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_dependsonopensslcookbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_dependsonopensslcookbook.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_dependsonzyppercookbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_dependsonzyppercookbook.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_dslincludeinresource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_dslincludeinresource.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_executeaptupdate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_executeaptupdate.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_executescexe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_executescexe.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_executesleep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_executesleep.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_executesysctl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_executesysctl.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_executetzutil.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_executetzutil.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_foodcriticcomments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_foodcriticcomments.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_ifprovidesdefaultaction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_ifprovidesdefaultaction.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_includingaptdefaultrecipe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_includingaptdefaultrecipe.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_legacyberksfilesource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_legacyberksfilesource.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_libarchivefileresource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_libarchivefileresource.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_macosxuserdefaults.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_macosxuserdefaults.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_minitesthandlerusage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_minitesthandlerusage.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_nodeinitpackage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_nodeinitpackage.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_noderolesinclude.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_noderolesinclude.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_opensslrsakeyresource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_opensslrsakeyresource.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_opensslx509resource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_opensslx509resource.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_osxconfigprofileresource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_osxconfigprofileresource.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_providesfrominitialize.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_providesfrominitialize.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_respondtocompiletime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_respondtocompiletime.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_respondtoinmetadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_respondtoinmetadata.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_respondtoprovides.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_respondtoprovides.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_respondtoresourcename.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_respondtoresourcename.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_setorreturninresources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_setorreturninresources.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_shellouthelper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_shellouthelper.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_shellouttochocolatey.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_shellouttochocolatey.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_simplifyaptppasetup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_simplifyaptppasetup.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_sysctlparamresource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_sysctlparamresource.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_userequirerelative.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_userequirerelative.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_useszypperrepo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_useszypperrepo.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_whyrunsupportedtrue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_whyrunsupportedtrue.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_windowsregistryuac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_windowsregistryuac.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_windowsscresource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_windowsscresource.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_windowszipfileusage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_windowszipfileusage.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_modernize_zipfileresource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_modernize_zipfileresource.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_redundantcode_attributemetadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_redundantcode_attributemetadata.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_redundantcode_conflictsmetadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_redundantcode_conflictsmetadata.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_redundantcode_doublecompiletime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_redundantcode_doublecompiletime.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_redundantcode_groupingmetadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_redundantcode_groupingmetadata.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_redundantcode_propertysplatregex.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_redundantcode_propertysplatregex.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_redundantcode_providesmetadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_redundantcode_providesmetadata.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_redundantcode_recipemetadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_redundantcode_recipemetadata.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_redundantcode_replacesmetadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_redundantcode_replacesmetadata.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_redundantcode_suggestsmetadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_redundantcode_suggestsmetadata.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_redundantcode_usecreateifmissing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_redundantcode_usecreateifmissing.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_ruby_gemspeclicense.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_ruby_gemspeclicense.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_ruby_gemspecrequirerubygems.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_ruby_gemspecrequirerubygems.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_ruby_legacypowershelloutmethods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_ruby_legacypowershelloutmethods.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_ruby_requirenethttps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_ruby_requirenethttps.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_ruby_unlessdefinedrequire.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_ruby_unlessdefinedrequire.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_security_sshprivatekey.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_security_sshprivatekey.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_sharing_emptymetadatafield.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_sharing_emptymetadatafield.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_sharing_includeresourceexamples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_sharing_includeresourceexamples.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_sharing_insecurecookbookurl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_sharing_insecurecookbookurl.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_sharing_invalidlicensestring.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_sharing_invalidlicensestring.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_style_attributekeys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_style_attributekeys.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_style_chefwhaaat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_style_chefwhaaat.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_style_commentformat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_style_commentformat.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_style_commentsentencespacing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_style_commentsentencespacing.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_style_copyrightcommentformat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_style_copyrightcommentformat.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_style_defaultcopyrightcomments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_style_defaultcopyrightcomments.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_style_filemode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_style_filemode.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_style_negatingonlyif.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_style_negatingonlyif.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_style_unnecessaryoscheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_style_unnecessaryoscheck.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_chef_style_useplatformhelpers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_chef_style_useplatformhelpers.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_inspec_deprecations_attributedefault.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_inspec_deprecations_attributedefault.yml -------------------------------------------------------------------------------- /docs-chef-io/assets/cookstyle/cops_inspec_deprecations_attributehelper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs-chef-io/assets/cookstyle/cops_inspec_deprecations_attributehelper.yml -------------------------------------------------------------------------------- /docs-chef-io/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/chef/cookstyle/docs-chef-io 2 | 3 | go 1.14 4 | -------------------------------------------------------------------------------- /docs/cops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs/cops.md -------------------------------------------------------------------------------- /docs/cops_chef_correctness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs/cops_chef_correctness.md -------------------------------------------------------------------------------- /docs/cops_chef_deprecations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs/cops_chef_deprecations.md -------------------------------------------------------------------------------- /docs/cops_chef_effortless.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs/cops_chef_effortless.md -------------------------------------------------------------------------------- /docs/cops_chef_modernize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs/cops_chef_modernize.md -------------------------------------------------------------------------------- /docs/cops_chef_redundantcode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs/cops_chef_redundantcode.md -------------------------------------------------------------------------------- /docs/cops_chef_sharing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs/cops_chef_sharing.md -------------------------------------------------------------------------------- /docs/cops_chef_style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/docs/cops_chef_style.md -------------------------------------------------------------------------------- /habitat/plan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/habitat/plan.ps1 -------------------------------------------------------------------------------- /habitat/plan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/habitat/plan.sh -------------------------------------------------------------------------------- /habitat/tests/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/habitat/tests/test.ps1 -------------------------------------------------------------------------------- /habitat/tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/habitat/tests/test.sh -------------------------------------------------------------------------------- /lib/cookstyle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/cookstyle.rb -------------------------------------------------------------------------------- /lib/cookstyle/chefstyle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/cookstyle/chefstyle.rb -------------------------------------------------------------------------------- /lib/cookstyle/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/cookstyle/version.rb -------------------------------------------------------------------------------- /lib/rubocop/chef.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/chef.rb -------------------------------------------------------------------------------- /lib/rubocop/chef/autocorrect_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/chef/autocorrect_helpers.rb -------------------------------------------------------------------------------- /lib/rubocop/chef/cookbook_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/chef/cookbook_helpers.rb -------------------------------------------------------------------------------- /lib/rubocop/chef/cookbook_only.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/chef/cookbook_only.rb -------------------------------------------------------------------------------- /lib/rubocop/chef/platform_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/chef/platform_helpers.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/block_guard_clause_string_only.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/block_guard_clause_string_only.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/chef_application_fatal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/chef_application_fatal.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/conditional_ruby_shellout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/conditional_ruby_shellout.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/dnf_package_allow_downgrades.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/dnf_package_allow_downgrades.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/empty_resource_guard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/empty_resource_guard.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/incorrect_library_injection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/incorrect_library_injection.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/invalid_cookbook_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/invalid_cookbook_name.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/invalid_default_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/invalid_default_action.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/invalid_notification_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/invalid_notification_resource.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/invalid_notification_timing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/invalid_notification_timing.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/invalid_platform_family_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/invalid_platform_family_helper.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/invalid_platform_family_values_in_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/invalid_platform_family_values_in_case.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/invalid_platform_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/invalid_platform_helper.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/invalid_platform_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/invalid_platform_metadata.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/invalid_platform_values_in_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/invalid_platform_values_in_case.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/invalid_value_for_platform_family_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/invalid_value_for_platform_family_helper.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/invalid_value_for_platform_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/invalid_value_for_platform_helper.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/invalid_version_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/invalid_version_metadata.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/lazy_eval_node_attribute_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/lazy_eval_node_attribute_defaults.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/lazy_in_resource_guard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/lazy_in_resource_guard.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/macos_userdefaults_invalid_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/macos_userdefaults_invalid_type.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/malformed_value_for_platform.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/malformed_value_for_platform.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/metadata_malformed_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/metadata_malformed_version.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/metadata_missing_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/metadata_missing_name.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/metadata_missing_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/metadata_missing_version.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/node_normal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/node_normal.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/node_normal_unless.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/node_normal_unless.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/node_save.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/node_save.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/notifies_action_not_symbol.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/notifies_action_not_symbol.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/octal_mode_as_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/octal_mode_as_string.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/openssl_password_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/openssl_password_helpers.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/powershell_delete_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/powershell_delete_file.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/powershell_file_exists.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/powershell_file_exists.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/property_without_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/property_without_type.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/resource_sets_internal_properties.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/resource_sets_internal_properties.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/resource_sets_name_property.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/resource_sets_name_property.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/resource_with_none_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/resource_with_none_action.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/scoped_file_exist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/scoped_file_exist.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/service_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/service_resource.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/supports_must_be_float.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/supports_must_be_float.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/correctness/tmp_path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/correctness/tmp_path.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/cb_depends_on_self.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/cb_depends_on_self.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/chef_handler_recipe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/chef_handler_recipe.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/chef_handler_supports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/chef_handler_supports.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/chef_rest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/chef_rest.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/chef_rewind.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/chef_rewind.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/chef_shellout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/chef_shellout.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/chef_sugar_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/chef_sugar_helpers.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/chef_windows_platform_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/chef_windows_platform_helper.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/chefdk_generators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/chefdk_generators.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/cheffile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/cheffile.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/chefspec_coverage_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/chefspec_coverage_report.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/chefspec_legacy_runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/chefspec_legacy_runner.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/chocolatey_package_uninstall_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/chocolatey_package_uninstall_action.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/delivery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/delivery.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/depends_chef_nginx_cookbook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/depends_chef_nginx_cookbook.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/depends_chef_reporting_cookbook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/depends_chef_reporting_cookbook.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/depends_compat_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/depends_compat_resource.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/depends_omnibus_updater_cookbook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/depends_omnibus_updater_cookbook.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/depends_partial_search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/depends_partial_search.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/depends_poise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/depends_poise.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/deprecated_chefspec_platform.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/deprecated_chefspec_platform.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/deprecated_mixins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/deprecated_mixins.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/deprecated_platform_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/deprecated_platform_methods.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/deprecated_shellout_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/deprecated_shellout_methods.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/deprecated_sudo_actions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/deprecated_sudo_actions.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/deprecated_windows_version_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/deprecated_windows_version_check.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/deprecated_yum_repository_actions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/deprecated_yum_repository_actions.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/deprecated_yum_repository_properties.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/deprecated_yum_repository_properties.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/easy_install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/easy_install.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/eol_audit_mode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/eol_audit_mode.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/epic_fail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/epic_fail.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/erl_call.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/erl_call.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/execute_path_property.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/execute_path_property.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/execute_relative_creates_without_cwd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/execute_relative_creates_without_cwd.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/foodcritic_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/foodcritic_file.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/foodcritic_testing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/foodcritic_testing.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/hwrp_without_provides.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/hwrp_without_provides.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/hwrp_without_unified_mode_true.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/hwrp_without_unified_mode_true.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/inherits_compat_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/inherits_compat_resource.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/launchd_deprecated_hash_property.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/launchd_deprecated_hash_property.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/legacy_notify_syntax.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/legacy_notify_syntax.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/legacy_yum_cookbook_recipes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/legacy_yum_cookbook_recipes.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/librarian_chefspec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/librarian_chefspec.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/locale_lc_all_property.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/locale_lc_all_property.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/log_resource_notifications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/log_resource_notifications.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/macos_userdefaults_global_property.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/macos_userdefaults_global_property.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/name_property_and_default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/name_property_and_default.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/node_deep_fetch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/node_deep_fetch.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/node_methods_not_attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/node_methods_not_attributes.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/node_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/node_set.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/node_set_unless.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/node_set_unless.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/node_set_without_level.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/node_set_without_level.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/partial_search_class_usage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/partial_search_class_usage.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/partial_search_helper_usage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/partial_search_helper_usage.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/poise_archive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/poise_archive.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/policyfile_community_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/policyfile_community_source.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/powershell_cookbook_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/powershell_cookbook_helpers.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/require_recipe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/require_recipe.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/resource_overrides_provides_method.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/resource_overrides_provides_method.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/resource_uses_dsl_name_method.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/resource_uses_dsl_name_method.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/resource_uses_only_resource_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/resource_uses_only_resource_name.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/resource_uses_provider_base_method.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/resource_uses_provider_base_method.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/resource_uses_updated_method.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/resource_uses_updated_method.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/resource_without_unified_mode_true.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/resource_without_unified_mode_true.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/ruby_27_keyword_argument_warnings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/ruby_27_keyword_argument_warnings.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/ruby_block_create_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/ruby_block_create_action.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/run_command_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/run_command_helper.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/search_uses_positional_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/search_uses_positional_parameters.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/use_automatic_resource_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/use_automatic_resource_name.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/use_inline_resources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/use_inline_resources.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/use_yaml_dump.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/use_yaml_dump.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/user_supports_property.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/user_supports_property.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/verify_property_file_expansion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/verify_property_file_expansion.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/windows_feature_servermanagercmd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/windows_feature_servermanagercmd.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/windows_package_installer_type_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/windows_package_installer_type_string.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/windows_task_change_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/windows_task_change_action.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/windows_version_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/windows_version_helpers.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/xml_ruby_recipe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/xml_ruby_recipe.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/deprecation/yum_dnf_compat_recipe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/deprecation/yum_dnf_compat_recipe.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/effortless/berksfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/effortless/berksfile.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/effortless/chef_vault_used.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/effortless/chef_vault_used.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/effortless/data_bags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/effortless/data_bags.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/effortless/depends_chef_vault.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/effortless/depends_chef_vault.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/effortless/node_environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/effortless/node_environment.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/effortless/node_policygroup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/effortless/node_policygroup.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/effortless/node_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/effortless/node_roles.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/effortless/search_for_environments_or_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/effortless/search_for_environments_or_roles.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/effortless/search_used.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/effortless/search_used.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/action_method_in_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/action_method_in_resource.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/allowed_actions_initializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/allowed_actions_initializer.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/apt_default_recipe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/apt_default_recipe.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/berksfile_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/berksfile_source.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/build_essential.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/build_essential.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/chef_14_resources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/chef_14_resources.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/chef_15_resources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/chef_15_resources.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/chef_gem_nokogiri.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/chef_gem_nokogiri.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/class_eval_action_class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/class_eval_action_class.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/compile_time_resources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/compile_time_resources.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/conditional_using_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/conditional_using_test.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/cron_d_file_or_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/cron_d_file_or_template.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/cron_manage_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/cron_manage_resource.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/databag_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/databag_helpers.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/declare_action_class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/declare_action_class.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/default_action_initializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/default_action_initializer.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/defines_chefspec_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/defines_chefspec_matchers.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/definitions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/definitions.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/depends_chef_vault_cookbook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/depends_chef_vault_cookbook.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/depends_chocolatey_cookbooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/depends_chocolatey_cookbooks.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/depends_kernel_module_cookbook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/depends_kernel_module_cookbook.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/depends_locale_cookbook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/depends_locale_cookbook.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/depends_openssl_cookbook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/depends_openssl_cookbook.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/depends_timezone_lwrp_cookbook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/depends_timezone_lwrp_cookbook.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/depends_windows_firewall_cookbook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/depends_windows_firewall_cookbook.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/depends_zypper_cookbook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/depends_zypper_cookbook.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/dsl_include_in_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/dsl_include_in_resource.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/empty_resource_initialize.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/empty_resource_initialize.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/execute_apt_update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/execute_apt_update.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/execute_sc_exe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/execute_sc_exe.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/execute_sleep.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/execute_sleep.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/execute_sysctl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/execute_sysctl.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/execute_tzutil.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/execute_tzutil.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/foodcritic_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/foodcritic_comments.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/if_provides_default_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/if_provides_default_action.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/includes_mixin_shellout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/includes_mixin_shellout.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/libarchive_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/libarchive_file.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/macos_user_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/macos_user_defaults.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/minitest_handler_usage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/minitest_handler_usage.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/node_init_package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/node_init_package.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/node_roles_include.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/node_roles_include.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/ohai_default_recipe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/ohai_default_recipe.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/openssl_rsa_key_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/openssl_rsa_key_resource.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/openssl_x509_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/openssl_x509_resource.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/osx_config_profile_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/osx_config_profile_resource.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/powershell_expand_archive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/powershell_expand_archive.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/powershell_guard_interpreter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/powershell_guard_interpreter.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/powershell_install_package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/powershell_install_package.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/powershell_install_windowsfeature.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/powershell_install_windowsfeature.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/property_with_name_attribute.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/property_with_name_attribute.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/provides_initializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/provides_initializer.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/resource_name_initializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/resource_name_initializer.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/resource_set_or_return.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/resource_set_or_return.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/resource_with_attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/resource_with_attributes.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/respond_to_compile_time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/respond_to_compile_time.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/respond_to_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/respond_to_metadata.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/respond_to_provides.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/respond_to_provides.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/respond_to_resource_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/respond_to_resource_name.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/sc_windows_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/sc_windows_resource.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/seven_zip_archive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/seven_zip_archive.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/shell_out_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/shell_out_helper.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/shellouts_to_chocolatey.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/shellouts_to_chocolatey.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/simplify_apt_ppa_setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/simplify_apt_ppa_setup.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/sysctl_param_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/sysctl_param_resource.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/unnecessary_mixlib_shellout_require.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/unnecessary_mixlib_shellout_require.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/use_chef_language_cloud_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/use_chef_language_cloud_helpers.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/use_chef_language_env_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/use_chef_language_env_helpers.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/use_chef_language_systemd_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/use_chef_language_systemd_helper.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/use_multipackage_installs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/use_multipackage_installs.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/use_require_relative.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/use_require_relative.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/whyrun_supported_true.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/whyrun_supported_true.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/windows_default_recipe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/windows_default_recipe.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/windows_registry_uac.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/windows_registry_uac.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/windows_zipfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/windows_zipfile.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/zipfile_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/zipfile_resource.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/modernize/zypper_repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/modernize/zypper_repo.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/redundant/apt_repository_distribution_default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/redundant/apt_repository_distribution_default.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/redundant/apt_repository_notifies_apt_update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/redundant/apt_repository_notifies_apt_update.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/redundant/attribute_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/redundant/attribute_metadata.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/redundant/conflicts_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/redundant/conflicts_metadata.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/redundant/custom_resource_with_allowed_actions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/redundant/custom_resource_with_allowed_actions.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/redundant/double_compile_time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/redundant/double_compile_time.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/redundant/grouping_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/redundant/grouping_metadata.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/redundant/long_description_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/redundant/long_description_metadata.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/redundant/multiple_platform_checks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/redundant/multiple_platform_checks.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/redundant/name_property_and_required.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/redundant/name_property_and_required.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/redundant/ohai_attribute_to_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/redundant/ohai_attribute_to_string.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/redundant/property_splat_regex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/redundant/property_splat_regex.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/redundant/property_with_default_and_required.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/redundant/property_with_default_and_required.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/redundant/provides_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/redundant/provides_metadata.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/redundant/recipe_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/redundant/recipe_metadata.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/redundant/replaces_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/redundant/replaces_metadata.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/redundant/resource_with_nothing_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/redundant/resource_with_nothing_action.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/redundant/sensitive_property_in_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/redundant/sensitive_property_in_resource.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/redundant/string_property_with_nil_default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/redundant/string_property_with_nil_default.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/redundant/suggests_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/redundant/suggests_metadata.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/redundant/unnecessary_desired_state.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/redundant/unnecessary_desired_state.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/redundant/unnecessary_name_property.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/redundant/unnecessary_name_property.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/redundant/use_create_if_missing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/redundant/use_create_if_missing.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/security/ssh_private_key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/security/ssh_private_key.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/sharing/default_maintainer_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/sharing/default_maintainer_metadata.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/sharing/empty_metadata_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/sharing/empty_metadata_field.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/sharing/include_property_descriptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/sharing/include_property_descriptions.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/sharing/include_resource_descriptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/sharing/include_resource_descriptions.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/sharing/include_resource_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/sharing/include_resource_examples.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/sharing/insecure_cookbook_url.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/sharing/insecure_cookbook_url.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/sharing/invalid_license_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/sharing/invalid_license_string.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/style/attribute_keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/style/attribute_keys.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/style/chef_whaaat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/style/chef_whaaat.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/style/comment_sentence_spacing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/style/comment_sentence_spacing.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/style/comments_copyright_format.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/style/comments_copyright_format.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/style/comments_default_copyright.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/style/comments_default_copyright.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/style/comments_format.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/style/comments_format.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/style/file_mode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/style/file_mode.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/style/immediate_notification_timing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/style/immediate_notification_timing.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/style/include_recipe_with_parentheses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/style/include_recipe_with_parentheses.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/style/negating_only_if.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/style/negating_only_if.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/style/overly_complex_supports_depends_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/style/overly_complex_supports_depends_metadata.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/style/simplify_platform_major_version_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/style/simplify_platform_major_version_check.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/style/true_false_resource_properties.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/style/true_false_resource_properties.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/style/unnecessary_os_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/style/unnecessary_os_check.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/style/unnecessary_platform_case_statement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/style/unnecessary_platform_case_statement.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chef/style/use_platform_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chef/style/use_platform_helpers.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chefstyle/ruby/gemspec_license.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chefstyle/ruby/gemspec_license.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chefstyle/ruby/gemspec_require_rubygems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chefstyle/ruby/gemspec_require_rubygems.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chefstyle/ruby/legacy_powershell_out_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chefstyle/ruby/legacy_powershell_out_methods.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chefstyle/ruby/require_net_https.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chefstyle/ruby/require_net_https.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/chefstyle/ruby/unless_defined_require.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/chefstyle/ruby/unless_defined_require.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/inspec/deprecation/attribute_default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/inspec/deprecation/attribute_default.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/inspec/deprecation/attribute_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/inspec/deprecation/attribute_helper.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/target_chef_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/cop/target_chef_version.rb -------------------------------------------------------------------------------- /lib/rubocop/monkey_patches/allow_invalid_ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/monkey_patches/allow_invalid_ruby.rb -------------------------------------------------------------------------------- /lib/rubocop/monkey_patches/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/monkey_patches/base.rb -------------------------------------------------------------------------------- /lib/rubocop/monkey_patches/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/monkey_patches/config.rb -------------------------------------------------------------------------------- /lib/rubocop/monkey_patches/directive_comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/monkey_patches/directive_comment.rb -------------------------------------------------------------------------------- /lib/rubocop/monkey_patches/registry_cop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/monkey_patches/registry_cop.rb -------------------------------------------------------------------------------- /lib/rubocop/monkey_patches/team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/lib/rubocop/monkey_patches/team.rb -------------------------------------------------------------------------------- /spec/rubocop/chef/cookbook_helpers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/chef/cookbook_helpers_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/block_guard_clause_string_only_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/block_guard_clause_string_only_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/chef_application_fatal_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/chef_application_fatal_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/conditional_ruby_shellout_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/conditional_ruby_shellout_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/dnf_package_allow_downgrades_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/dnf_package_allow_downgrades_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/empty_resource_guard_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/empty_resource_guard_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/incorrect_library_injection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/incorrect_library_injection_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/invalid_cookbook_name_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/invalid_cookbook_name_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/invalid_default_action_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/invalid_default_action_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/invalid_notification_resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/invalid_notification_resource_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/invalid_notification_timing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/invalid_notification_timing_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/invalid_platform_family_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/invalid_platform_family_helper_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/invalid_platform_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/invalid_platform_helper_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/invalid_platform_metadata_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/invalid_platform_metadata_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/invalid_platform_values_in_case_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/invalid_platform_values_in_case_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/invalid_value_for_platform_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/invalid_value_for_platform_helper_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/invalid_version_metadata_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/invalid_version_metadata_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/lazy_eval_node_attribute_defaults_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/lazy_eval_node_attribute_defaults_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/lazy_in_resource_guard_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/lazy_in_resource_guard_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/macos_userdefaults_invalid_type_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/macos_userdefaults_invalid_type_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/malformed_value_for_platform_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/malformed_value_for_platform_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/metadata_malformed_depends_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/metadata_malformed_depends_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/metadata_missing_name_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/metadata_missing_name_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/metadata_missing_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/metadata_missing_version.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/node_normal_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/node_normal_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/node_normal_unless_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/node_normal_unless_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/node_save_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/node_save_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/notifies_action_not_symbol_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/notifies_action_not_symbol_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/octal_mode_as_string_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/octal_mode_as_string_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/openssl_password_helpers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/openssl_password_helpers_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/powershell_delete_file_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/powershell_delete_file_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/powershell_file_exists_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/powershell_file_exists_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/property_without_type_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/property_without_type_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/resource_sets_internal_properties_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/resource_sets_internal_properties_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/resource_sets_name_property_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/resource_sets_name_property_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/resource_with_none_action_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/resource_with_none_action_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/scoped_file_exist_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/scoped_file_exist_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/service_resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/service_resource_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/supports_must_be_float_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/supports_must_be_float_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/correctness/tmp_path_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/correctness/tmp_path_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/cb_depends_on_self_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/cb_depends_on_self_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/chef_handler_recipe_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/chef_handler_recipe_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/chef_handler_supports_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/chef_handler_supports_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/chef_rest_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/chef_rest_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/chef_rewind_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/chef_rewind_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/chef_shellout_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/chef_shellout_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/chef_sugar_helpers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/chef_sugar_helpers_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/chef_windows_platform_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/chef_windows_platform_helper_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/chefdk_generators_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/chefdk_generators_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/cheffile_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/cheffile_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/chefspec_coverage_report_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/chefspec_coverage_report_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/chefspec_legacy_runner_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/chefspec_legacy_runner_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/delivery_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/delivery_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/depends_chef_nginx_cookbook_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/depends_chef_nginx_cookbook_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/depends_chef_reporting_cookbook_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/depends_chef_reporting_cookbook_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/depends_compat_resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/depends_compat_resource_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/depends_omnibus_updater_cookbook_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/depends_omnibus_updater_cookbook_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/depends_partial_search_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/depends_partial_search_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/depends_poise_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/depends_poise_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/deprecated_chefspec_platform_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/deprecated_chefspec_platform_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/deprecated_mixins_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/deprecated_mixins_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/deprecated_platform_methods_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/deprecated_platform_methods_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/deprecated_shellout_methods_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/deprecated_shellout_methods_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/deprecated_sudo_actions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/deprecated_sudo_actions_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/deprecated_windows_version_check_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/deprecated_windows_version_check_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/deprecated_yum_repository_actions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/deprecated_yum_repository_actions_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/easy_install_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/easy_install_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/eol_audit_mode_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/eol_audit_mode_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/epic_fail_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/epic_fail_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/erl_call_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/erl_call_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/execute_path_property_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/execute_path_property_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/foodcritic_file_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/foodcritic_file_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/foodcritic_testing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/foodcritic_testing_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/hwrp_without_provides_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/hwrp_without_provides_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/hwrp_without_unified_mode_true_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/hwrp_without_unified_mode_true_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/inherits_compat_resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/inherits_compat_resource_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/launchd_deprecated_hash_property_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/launchd_deprecated_hash_property_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/legacy_notify_syntax_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/legacy_notify_syntax_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/legacy_yum_cookbook_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/legacy_yum_cookbook_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/librarian_chefspec_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/librarian_chefspec_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/locale_lc_all_property_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/locale_lc_all_property_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/log_resource_notification_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/log_resource_notification_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/macos_userdefaults_global_property_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/macos_userdefaults_global_property_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/name_property_and_default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/name_property_and_default_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/node_deep_fetch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/node_deep_fetch_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/node_methods_not_attributes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/node_methods_not_attributes_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/node_set_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/node_set_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/node_set_unless_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/node_set_unless_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/node_set_without_level_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/node_set_without_level_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/partial_search_class_usage_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/partial_search_class_usage_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/partial_search_helper_usage_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/partial_search_helper_usage_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/poise_archive_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/poise_archive_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/policyfile_community_source_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/policyfile_community_source_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/powershell_cookbook_helpers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/powershell_cookbook_helpers_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/require_recipe_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/require_recipe_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/resource_overrides_provides_method_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/resource_overrides_provides_method_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/resource_uses_dsl_name_method_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/resource_uses_dsl_name_method_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/resource_uses_only_resource_name_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/resource_uses_only_resource_name_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/resource_uses_provider_base_method_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/resource_uses_provider_base_method_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/resource_uses_updated_method_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/resource_uses_updated_method_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/resource_without_unified_mode_true_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/resource_without_unified_mode_true_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/ruby_27_keyword_argument_warnings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/ruby_27_keyword_argument_warnings_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/ruby_block_create_action_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/ruby_block_create_action_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/run_command_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/run_command_helper_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/search_uses_positional_parameters_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/search_uses_positional_parameters_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/use_automatic_resource_name_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/use_automatic_resource_name_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/use_inline_resources_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/use_inline_resources_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/use_yaml_dump_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/use_yaml_dump_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/user_supports_property_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/user_supports_property_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/verify_property_file_expansion_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/verify_property_file_expansion_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/windows_feature_servermanagercmd_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/windows_feature_servermanagercmd_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/windows_task_change_action_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/windows_task_change_action_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/windows_version_helpers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/windows_version_helpers_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/xml_ruby_recipe_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/xml_ruby_recipe_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/deprecation/yum_dnf_compat_recipe_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/deprecation/yum_dnf_compat_recipe_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/effortless/Berksfile_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/effortless/Berksfile_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/effortless/chef_vault_used_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/effortless/chef_vault_used_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/effortless/data_bag_used_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/effortless/data_bag_used_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/effortless/depends_chef_vault_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/effortless/depends_chef_vault_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/effortless/node_environment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/effortless/node_environment_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/effortless/node_policygroup_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/effortless/node_policygroup_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/effortless/node_roles_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/effortless/node_roles_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/effortless/search_for_environments_or_roles_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/effortless/search_for_environments_or_roles_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/effortless/search_used_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/effortless/search_used_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/action_method_in_resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/action_method_in_resource_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/allowed_actions_initializer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/allowed_actions_initializer_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/apt_default_recipe_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/apt_default_recipe_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/berksfile_source_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/berksfile_source_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/build_essential_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/build_essential_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/chef_14_resources_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/chef_14_resources_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/chef_15_resources_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/chef_15_resources_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/chef_gem_nokogiri_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/chef_gem_nokogiri_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/class_eval_action_class_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/class_eval_action_class_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/compile_time_resources_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/compile_time_resources_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/conditional_using_test_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/conditional_using_test_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/cron_d_file_or_template_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/cron_d_file_or_template_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/cron_manage_resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/cron_manage_resource_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/databag_helpers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/databag_helpers_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/declare_action_class_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/declare_action_class_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/default_action_initializer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/default_action_initializer_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/defines_chefspec_matchers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/defines_chefspec_matchers_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/definitions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/definitions_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/depends_chef_vault_cookbook_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/depends_chef_vault_cookbook_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/depends_chocolatey_cookbooks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/depends_chocolatey_cookbooks_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/depends_kernel_module_cookbook_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/depends_kernel_module_cookbook_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/depends_locale_cookbook_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/depends_locale_cookbook_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/depends_openssl_cookbook_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/depends_openssl_cookbook_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/depends_timezone_lwrp_cookbook_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/depends_timezone_lwrp_cookbook_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/depends_windows_firewall_cookbook_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/depends_windows_firewall_cookbook_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/depends_zypper_cookbook_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/depends_zypper_cookbook_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/dsl_include_in_resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/dsl_include_in_resource_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/empty_resource_initialize_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/empty_resource_initialize_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/execute_apt_update_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/execute_apt_update_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/execute_sc_exe_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/execute_sc_exe_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/execute_sleep_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/execute_sleep_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/execute_sysctl_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/execute_sysctl_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/execute_tzutil_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/execute_tzutil_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/foodcritic_comments_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/foodcritic_comments_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/if_provides_default_action_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/if_provides_default_action_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/includes_mixin_shellout_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/includes_mixin_shellout_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/libarchive_file_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/libarchive_file_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/macos_user_defaults_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/macos_user_defaults_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/minitest_handler_usage_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/minitest_handler_usage_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/node_init_package_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/node_init_package_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/node_roles_include_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/node_roles_include_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/ohai_default_recipe_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/ohai_default_recipe_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/openssl_rsa_key_resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/openssl_rsa_key_resource_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/openssl_x509_resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/openssl_x509_resource_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/osx_config_profile_resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/osx_config_profile_resource_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/powershell_expand_archive_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/powershell_expand_archive_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/powershell_guard_interpreter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/powershell_guard_interpreter_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/powershell_install_package_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/powershell_install_package_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/powershell_install_windowsfeature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/powershell_install_windowsfeature_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/property_with_name_attribute_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/property_with_name_attribute_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/provides_initializer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/provides_initializer_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/resource_name_initializer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/resource_name_initializer_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/resource_set_or_return_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/resource_set_or_return_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/resource_with_attributes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/resource_with_attributes_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/respond_to_compile_time_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/respond_to_compile_time_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/respond_to_metadata_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/respond_to_metadata_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/respond_to_provides_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/respond_to_provides_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/respond_to_resource_name_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/respond_to_resource_name_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/sc_windows_resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/sc_windows_resource_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/seven_zip_archive_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/seven_zip_archive_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/shell_out_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/shell_out_helper_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/shellout_to_chocolatey_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/shellout_to_chocolatey_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/simplify_apt_ppa_setup_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/simplify_apt_ppa_setup_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/systctl_param_resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/systctl_param_resource_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/unnecessary_mixlib_shellout_require_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/unnecessary_mixlib_shellout_require_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/use_chef_language_cloud_helpers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/use_chef_language_cloud_helpers_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/use_chef_language_env_helpers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/use_chef_language_env_helpers_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/use_chef_language_systemd_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/use_chef_language_systemd_helper_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/use_multipackage_installs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/use_multipackage_installs_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/use_require_relative_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/use_require_relative_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/whyrun_supported_true_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/whyrun_supported_true_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/windows_default_recipe_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/windows_default_recipe_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/windows_registry_uac_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/windows_registry_uac_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/windows_zipfile_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/windows_zipfile_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/zipfile_resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/zipfile_resource_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/modernize/zypper_repo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/modernize/zypper_repo_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/redundant/apt_repository_distribution_default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/redundant/apt_repository_distribution_default_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/redundant/apt_repository_notifies_apt_update_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/redundant/apt_repository_notifies_apt_update_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/redundant/attribute_metadata_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/redundant/attribute_metadata_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/redundant/conflicts_metadata_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/redundant/conflicts_metadata_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/redundant/custom_resource_with_allowed_actions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/redundant/custom_resource_with_allowed_actions_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/redundant/double_compile_time_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/redundant/double_compile_time_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/redundant/grouping_metadata_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/redundant/grouping_metadata_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/redundant/long_description_metadata_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/redundant/long_description_metadata_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/redundant/multiple_platform_checks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/redundant/multiple_platform_checks_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/redundant/name_property_and_required_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/redundant/name_property_and_required_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/redundant/ohai_attribute_to_string_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/redundant/ohai_attribute_to_string_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/redundant/property_splat_regex_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/redundant/property_splat_regex_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/redundant/property_with_default_and_required_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/redundant/property_with_default_and_required_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/redundant/provides_metadata_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/redundant/provides_metadata_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/redundant/recipe_metadata_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/redundant/recipe_metadata_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/redundant/replaces_metadata_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/redundant/replaces_metadata_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/redundant/resource_with_nothing_action_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/redundant/resource_with_nothing_action_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/redundant/sensitive_property_in_resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/redundant/sensitive_property_in_resource_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/redundant/string_property_with_nil_default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/redundant/string_property_with_nil_default_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/redundant/suggests_metadata_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/redundant/suggests_metadata_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/redundant/unnecessary_desired_state_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/redundant/unnecessary_desired_state_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/redundant/unnecessary_name_property_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/redundant/unnecessary_name_property_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/redundant/use_create_if_missing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/redundant/use_create_if_missing_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/ruby/chefspec_license_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/ruby/chefspec_license_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/ruby/gemspec_require_rubygems_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/ruby/gemspec_require_rubygems_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/ruby/legacy_powershell_out_methods_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/ruby/legacy_powershell_out_methods_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/ruby/require_net_https_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/ruby/require_net_https_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/ruby/unless_defined_require_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/ruby/unless_defined_require_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/security/ssh_private_key_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/security/ssh_private_key_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/sharing/default_maintainer_metadata_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/sharing/default_maintainer_metadata_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/sharing/empty_metadata_field_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/sharing/empty_metadata_field_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/sharing/include_property_descriptions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/sharing/include_property_descriptions_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/sharing/include_resource_descriptions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/sharing/include_resource_descriptions_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/sharing/include_resource_examples_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/sharing/include_resource_examples_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/sharing/insecure_cookbook_url_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/sharing/insecure_cookbook_url_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/sharing/invalid_license_string_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/sharing/invalid_license_string_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/style/attribute_keys_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/style/attribute_keys_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/style/file_mode_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/style/file_mode_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/style/immediate_notification_timing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/style/immediate_notification_timing_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/style/include_recipe_with_parentheses_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/style/include_recipe_with_parentheses_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/style/negating_only_if_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/style/negating_only_if_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/style/overly_complex_supports_depends_metadata_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/style/overly_complex_supports_depends_metadata_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/style/simplify_platform_major_version_check_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/style/simplify_platform_major_version_check_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/style/true_false_resource_properties_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/style/true_false_resource_properties_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/style/unnecessary_os_check_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/style/unnecessary_os_check_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/style/unnecessary_platform_case_statement_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/style/unnecessary_platform_case_statement_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/chef/style/use_platform_helpers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/chef/style/use_platform_helpers_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/inspec/attribute_default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/inspec/attribute_default_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/inspec/attribute_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/cop/inspec/attribute_helper_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/monkey_patches/cookstyle_comment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/monkey_patches/cookstyle_comment_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/monkey_patches/migration_departmentname_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/rubocop/monkey_patches/migration_departmentname_spec.rb -------------------------------------------------------------------------------- /spec/shared/autocorrect_behavior.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/shared/autocorrect_behavior.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /tasks/cops_documentation.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/tasks/cops_documentation.rake -------------------------------------------------------------------------------- /tasks/prof.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/tasks/prof.rake -------------------------------------------------------------------------------- /tasks/spellcheck.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef/cookstyle/HEAD/tasks/spellcheck.rake --------------------------------------------------------------------------------