summaryrefslogtreecommitdiff
path: root/lib/chef_zero/endpoints/not_found_endpoint.rb
diff options
context:
space:
mode:
authortyler-ball <tyleraball@gmail.com>2014-09-26 16:18:48 -0700
committertyler-ball <tyleraball@gmail.com>2014-09-26 16:18:48 -0700
commite3f2e8471cd97340c28b7541ffb0fa7143a33ca4 (patch)
tree0b6451871dc704ab7988c19ed5f53e5318a7bd5f /lib/chef_zero/endpoints/not_found_endpoint.rb
parent15f4a3e533eefa59412e81c0252af3166541ede0 (diff)
downloadchef-zero-tball/chef-zero-yajl-replace-json.tar.gz
Removing 'json' gem dependency, replacing with 'ffi-yajl'tball/chef-zero-yajl-replace-json
Diffstat (limited to 'lib/chef_zero/endpoints/not_found_endpoint.rb')
-rw-r--r--lib/chef_zero/endpoints/not_found_endpoint.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef_zero/endpoints/not_found_endpoint.rb b/lib/chef_zero/endpoints/not_found_endpoint.rb
index edbf239..ddf1246 100644
--- a/lib/chef_zero/endpoints/not_found_endpoint.rb
+++ b/lib/chef_zero/endpoints/not_found_endpoint.rb
@@ -1,10 +1,10 @@
-require 'json'
+require 'ffi_yajl'
module ChefZero
module Endpoints
class NotFoundEndpoint
def call(request)
- return [404, {"Content-Type" => "application/json"}, JSON.pretty_generate({"error" => ["Object not found: #{request.env['REQUEST_PATH']}"]})]
+ return [404, {"Content-Type" => "application/json"}, FFI_Yajl::Encoder.encode({"error" => ["Object not found: #{request.env['REQUEST_PATH']}"]}, :pretty => true)]
end
end
end