Skip to content

Instantly share code, notes, and snippets.

@brnrdog
Created December 29, 2016 17:11
Show Gist options
  • Save brnrdog/0482470d77f948d7cde97bb1b53e3b98 to your computer and use it in GitHub Desktop.
Save brnrdog/0482470d77f948d7cde97bb1b53e3b98 to your computer and use it in GitHub Desktop.
brtr-votes-task
namespace :votes do
task :to_likes do
Vote.all.each do |vote|
unless Like.exists?(user: vote.user, likeable: vote.votable)
Like.create(user: vote.user, likeable: vote.votable)
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment