Consider:
def first_login?
if (self.sign_in_count <= 20)
return true
else
return false
end
end
It would be nice if I could just have it be 1 line of code…if possible.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Your comparison already returns boolean value
You don’t need
selfas well because methods are invoked on self implicitly