Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Done #1289

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Done #1289

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ source 'https://rubygems.org'
gem 'rack'
gem 'rack-test'
gem 'rspec'
gem 'pry'
6 changes: 6 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
GEM
remote: https://rubygems.org/
specs:
coderay (1.1.2)
diff-lcs (1.3)
method_source (0.9.2)
pry (0.12.2)
coderay (~> 1.1.0)
method_source (~> 0.9.0)
rack (2.0.8)
rack-test (1.1.0)
rack (>= 1.0, < 3)
Expand All @@ -23,6 +28,7 @@ PLATFORMS
ruby

DEPENDENCIES
pry
rack
rack-test
rspec
Expand Down
27 changes: 26 additions & 1 deletion app/application.rb
Original file line number Diff line number Diff line change
@@ -1,25 +1,50 @@
class Application

@@items = ["Apples","Carrots","Pears"]
@@cart = []

def call(env)
resp = Rack::Response.new
req = Rack::Request.new(env)

# binding.pry
if req.path.match(/items/)
@@items.each do |item|
resp.write "#{item}\n"
end

elsif req.path.match(/search/)
search_term = req.params["q"]
resp.write handle_search(search_term)

elsif req.path.match(/cart/)
# binding.pry
if @@cart == []
resp.write "Your cart is empty"
else

@@cart.each do |cart|
resp.write "#{cart}\n"
end
end
elsif req.path.match(/add/)
item_to_add = req.params["item"]
if @@items.include?(item_to_add)
@@cart << item_to_add
resp.write "added #{item_to_add}"
else
resp.write "We don't have that item"
end
else
resp.write "Path Not Found"
end

resp.finish
end

# else
# resp.write "Your cart is empty"


def handle_search(search_term)
if @@items.include?(search_term)
return "#{search_term} is one of our items"
Expand Down
1 change: 1 addition & 0 deletions config/environment.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
require 'bundler/setup'
Bundler.require


require_relative '../app/application'