Skip to content
10 changes: 9 additions & 1 deletion app/controllers/application_controller.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

class ApplicationController < ActionController::Base
protect_from_forgery

Expand All @@ -10,6 +9,10 @@ def total_price
price * items
end

def person_deatils
puts "coming soon"
end

def ask_question
puts 'question'
reply= gets.chomp.downcase
Expand All @@ -21,4 +24,9 @@ def ask_question
puts 'Please answer "yes" or "no".'
end
end

def good_method
puts "wel come"
end

end