These tasks are not needed for new installations, and in existing installations they've already been executed when upgrading to version 1.3.0.
14 lines
331 B
Ruby
14 lines
331 B
Ruby
namespace :budgets do
|
|
namespace :email do
|
|
desc "Sends emails to authors of selected investments"
|
|
task selected: :environment do
|
|
Budget.last.email_selected
|
|
end
|
|
|
|
desc "Sends emails to authors of unselected investments"
|
|
task unselected: :environment do
|
|
Budget.last.email_unselected
|
|
end
|
|
end
|
|
end
|