From 168557f0827204ef29e1dcabdd97d1f27b81dfe2 Mon Sep 17 00:00:00 2001 From: Giancarlo Zabaleta Date: Tue, 8 Oct 2019 22:25:39 +0000 Subject: [PATCH] Done. --- app/application.rb | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/app/application.rb b/app/application.rb index e69de29bb..be168da6f 100644 --- a/app/application.rb +++ b/app/application.rb @@ -0,0 +1,24 @@ +class Application + @@items = [] + + def call(env) + resp = Rack::Response.new + req = Rack::Request.new(env) + + if req.path.match(/items\/.+/) + item_name = req.path.split("/items/").last + item = @@items.detect { |i| i.name == item_name } + if item + resp.write item.price + else + resp.write "Item not found" + resp.status = 400 + end + else + resp.write "Route not found" + resp.status = 404 + end + + resp.finish + end +end \ No newline at end of file