mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-05 15:37:39 -05:00
12 lines
186 B
Ruby
12 lines
186 B
Ruby
# frozen_string_literal: true
|
|
|
|
namespace :search do
|
|
desc 'reindex'
|
|
task reindex: :environment do
|
|
Crop.reindex
|
|
Planting.reindex
|
|
Harvest.reindex
|
|
Seed.reindex
|
|
end
|
|
end
|