0
4

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.

railsのバッチメモ

Posted at

はじめに

他のqiita記事だったりサイトを参考に自分用メモとしています。

application.rbに以下の設定を追加

config/application.rb
 class Application < Rails::Application
   config.autoload_paths += Dir["#{config.root}/lib"]
 end

バッチファイル作成

libの下にbatchフォルダを作成し、ファイルを作成していきます。

lib/batch/sample.rb
class Sample
  def self.hello
    puts "hello world"
  end
end

##実行

$ rails runner Batch::Sample.hello

の手順で処理の実行が可能です。

Wheneverというcrontab管理ライブラリのgemがあります。

Wheneverをいれることによりバッチをいつ実行させるかのタイミングを指定することができます。

下記のサイトを参考に導入させていただきました。
http://morizyun.github.io/blog/whenever-gem-rails-ruby-capistrano/

0
4
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
0
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?