Merge pull request #92 from magynhard/patch-1

Rake example does only fire once
This commit is contained in:
Dzmitry Plashchynski
2022-05-29 20:35:32 +03:00
committed by GitHub

View File

@@ -83,8 +83,8 @@ require 'rake'
Rails.app_class.load_tasks
class Test
def perform(options)
Rake::Task['crono:hello'].invoke
def perform
Rake::Task['crono:hello'].execute
end
end