Created
February 4, 2016 09:33
-
-
Save collegeimprovements/e345fb938c0732fd673f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Todos | |
attr_accessor :priority, :urgency, :title, :description, :quadrant | |
def initialize(priority = 1, urgency = 1) | |
@priority, @urgency = priority, urgency | |
end | |
def quadrant | |
# case (@priority, @urgency) | |
# puts "is_imp ==> #{is_imp}" | |
if is_imp == "Imp" && is_urgent == "Urgent" | |
@quadrant = 1 | |
elsif is_imp == "Imp" && is_urgent == "Not Urgent" | |
@quadrant = 2 | |
elsif is_imp == "Not Imp" && is_urgent == "Not Urgent" | |
@quadrant = 3 | |
elsif is_imp == "Not Imp" && is_urgent == "Urgent" | |
@quadrant = 4 | |
else | |
puts "Technical Error" | |
end | |
print_info | |
end | |
def is_imp | |
case @priority | |
when 1..5 | |
"Not Imp" | |
when 6..10 | |
"Imp" | |
else | |
"Please enter value between 1..10" | |
end | |
end | |
def print_info | |
puts "priority -> #{@priority} - urgency -> #{@urgency} - quadrant -> #{@quadrant}" | |
end | |
def is_urgent | |
case @urgency | |
when 1..5 | |
"Not Urgent" | |
when 6..10 | |
"Urgent" | |
else | |
"Please enter value between 1..10" | |
end | |
end | |
end |
Author
collegeimprovements
commented
Feb 6, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment