Skip to content

Instantly share code, notes, and snippets.

@brnrdog
Created December 29, 2016 17:10
Show Gist options
  • Save brnrdog/27a67e165bbf4ba2bf3ad654a255c8b7 to your computer and use it in GitHub Desktop.
Save brnrdog/27a67e165bbf4ba2bf3ad654a255c8b7 to your computer and use it in GitHub Desktop.
brtr-category-task
namespace :category do
task :count_services do
Category.all.each do |category|
category.update(services_count: category.services.count)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment