rubocop noise: switched to predicate comparisons

Also introduced because of .ruby-version specification

http://www.rubydoc.info/gems/rubocop/RuboCop/Cop/Style/NumericPredicate
This commit is contained in:
Mark Moser
2016-09-08 10:39:26 -05:00
parent 4bbd93ded1
commit 9f23a5d3ce
3 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ class CandidateController < ApplicationController
end
def welcome
render :welcome_back if current_candidate.answers.count > 0
render :welcome_back if current_candidate.answers.count.positive?
end
def saved