summaryrefslogtreecommitdiff
path: root/lib/chef/resource/osx_profile.rb
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2019-07-02 11:11:35 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2019-07-02 11:13:54 -0700
commit77f8739a4741e2370e40ec39345a92a6ea393a1a (patch)
treebcf3c9a12556ce1fd18a83cd5f68cd24d36a1180 /lib/chef/resource/osx_profile.rb
parent90a74a80196725c4198b6042e8485d68c70777ac (diff)
downloadchef-77f8739a4741e2370e40ec39345a92a6ea393a1a.tar.gz
fix Layout/AlignArgumentslcg/new-chefstyle
this is using: Layout/AlignArguments: Enabled: true EnforcedStyle: with_fixed_indentation the default style can use really excessive whitespace. on starting lines which are already long, it fully indents across to where the arguments start and then begins the line there. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef/resource/osx_profile.rb')
-rw-r--r--lib/chef/resource/osx_profile.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/chef/resource/osx_profile.rb b/lib/chef/resource/osx_profile.rb
index 0641c66db9..eb5ba07f83 100644
--- a/lib/chef/resource/osx_profile.rb
+++ b/lib/chef/resource/osx_profile.rb
@@ -32,17 +32,17 @@ class Chef
allowed_actions :install, :remove
property :profile_name, String,
- description: "Use to specify the name of the profile, if different from the name of the resource block.",
- name_property: true, identity: true
+ description: "Use to specify the name of the profile, if different from the name of the resource block.",
+ name_property: true, identity: true
property :profile, [ String, Hash ],
- description: "Use to specify a profile. This may be the name of a profile contained in a cookbook or a Hash that contains the contents of the profile."
+ description: "Use to specify a profile. This may be the name of a profile contained in a cookbook or a Hash that contains the contents of the profile."
property :identifier, String,
- description: "Use to specify the identifier for the profile, such as com.company.screensaver."
+ description: "Use to specify the identifier for the profile, such as com.company.screensaver."
property :path, String,
- description: "The path to write the profile to disk before loading it."
+ description: "The path to write the profile to disk before loading it."
end
end
end