summaryrefslogtreecommitdiff
path: root/lib/chef_zero/endpoints/role_endpoint.rb
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2018-06-26 13:43:06 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2018-06-26 13:43:06 -0700
commit388576b19fce39303c5d444eb787c7eb89aee994 (patch)
treed54e7f597b2c0922b1185392578f6eb9ca414513 /lib/chef_zero/endpoints/role_endpoint.rb
parentf27950943f07e7ccda01a03ff728e1d1aca3513e (diff)
downloadchef-zero-388576b19fce39303c5d444eb787c7eb89aee994.tar.gz
remove hashrocket syntaxlcg/remove-hashrockets
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef_zero/endpoints/role_endpoint.rb')
-rw-r--r--lib/chef_zero/endpoints/role_endpoint.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef_zero/endpoints/role_endpoint.rb b/lib/chef_zero/endpoints/role_endpoint.rb
index d4bc4cd..4e31cdc 100644
--- a/lib/chef_zero/endpoints/role_endpoint.rb
+++ b/lib/chef_zero/endpoints/role_endpoint.rb
@@ -9,7 +9,7 @@ module ChefZero
def populate_defaults(request, response_json)
role = FFI_Yajl::Parser.parse(response_json)
role = ChefData::DataNormalizer.normalize_role(role, request.rest_path[3])
- FFI_Yajl::Encoder.encode(role, :pretty => true)
+ FFI_Yajl::Encoder.encode(role, pretty: true)
end
end
end