3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Rails3でのバッチ実行

Posted at

自分用メモ

lib/tasksに適当な処理用クラスを作成

test.rb
class Tasks::Test
  def self.batch
    # ここに処理を記述
  end 
end

実行は

rails runner Tasks::Test.batch

Task::はおきまりのおまじない、クラス名.呼び出したいメソッドで実行したい物を指定する。

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?