Skip to content

Instantly share code, notes, and snippets.

@txus
Created October 19, 2013 15:20
Show Gist options
  • Save txus/7057259 to your computer and use it in GitHub Desktop.
Save txus/7057259 to your computer and use it in GitHub Desktop.
dogs, cats = params[:questions]
.select { |k,v| v == true}
.map { |k,v| Question.find(k).category }
.partition { |e| e == "dog" }
if dogs.count > cats.count
"dog lover!!"
elsif dogs.count == cats.count
"plant lover"
else
"cat lover"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment