summaryrefslogtreecommitdiff
path: root/lib/chef_zero/endpoints/rest_list_endpoint.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef_zero/endpoints/rest_list_endpoint.rb')
-rw-r--r--lib/chef_zero/endpoints/rest_list_endpoint.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef_zero/endpoints/rest_list_endpoint.rb b/lib/chef_zero/endpoints/rest_list_endpoint.rb
index 135f0e9..28af8d4 100644
--- a/lib/chef_zero/endpoints/rest_list_endpoint.rb
+++ b/lib/chef_zero/endpoints/rest_list_endpoint.rb
@@ -26,7 +26,7 @@ module ChefZero
contents = request.body
key = get_key(contents)
if key.nil?
- error(400, "Must specify #{identity_keys.map { |k| k.inspect }.join(' or ')} in JSON")
+ error(400, "Must specify #{identity_keys.map(&:inspect).join(" or ")} in JSON")
else
create_data(request, request.rest_path, key, contents)
json_response(201, { "uri" => (build_uri(request.base_uri, request.rest_path + [key])).to_s })