前提・実現したいこと
Wheneverを使ってRakeタスクを定期実行したいです。
しかし、Wheneverのエラーでうまく起動しません。
皆様の、お知恵をお借りしたいです。
上記を行うに当たり、下記が現在の状態です。
◇Mailer、Whenever、Rakeタスクは導入済み。
※Rakeタスクの内容は、「メール送信」になります。
また、下記の挙動は確認が取れております。
①rails cを行い、deliver_nowメゾットでメールを送る
→(Mailerは問題ないとふんでます)
②タスクファイルにメール送信処理を登録後、ターミナルからrake ●●でメールは送信できている
→(タスクも問題ないとふんでます)
③ wheneverで定期実行、、、うまく動かない
→現在ここの状態です
発生している問題・エラーメッセージ
Whenever起動時のlogを確認すると下記のエラーコードが出ております。
そこで様々な情報を調べて行動しましたが、同じエラーの連続で解決に至りませんでした。
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems.rb:283:in `find_spec_for_exe': Could not find 'bundler' (2.1.4) required by your /Users/uot/projects/subscription/Gemfile.lock. (Gem::GemNotFoundException) To update to the latest version installed on your system, run `bundle update --bundler`. To install the missing version, run `gem install bundler:2.1.4` from /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems.rb:302:in `activate_bin_path' from /usr/bin/bundle:23:in `<main>'
試したこと
下記の2つのエラーを着目して、行動しました。
To update to the latest version installed on your system, run `bundle update --bundler
↑こちらは、ターミナルにてbundle update --bundlerを実行
To install the missing version, run `gem install bundler:2.1.4`
↑こちらは、gem install bundler -v 2.1.4をインストール。
他にも下記のサイトを確認して、crontabを削除して、crontabに反映をしましたが改善せず。。
https://qiita.com/hirokik-0076/items/c5ee73f439ee53dbe45f
重ねてですが、お知恵をお借りしたいです!
該当のソースコード
schedule.rb
require File.expand_path(File.dirname(__FILE__) + '/environment') rails_env = ENV['RAILS_ENV'] || :development set :output, "#{Rails.root}/log/cron.log" # ジョブの実行環境の指定 set :environment, rails_env every 1.minutes do runner "ThanxMailer.a.deliver_now" end
thanx_mailer.rb
class ThanxMailer < ApplicationMailer def a mail to: "送りたいアドレス" end end
thanxmailer_a.rake
namespace :thanxmailer_a do desc '定期テスト' task thanxmailer_a: :environment do ThanxMailer.a.deliver_now end end
development.rb
config.action_mailer.raise_delivery_errors = true config.action_mailer.delivery_method = :smtp config.action_mailer.smtp_settings = { :enable_starttls_auto => true, :address => 'smtp.gmail.com', :port => '587', :domain => 'smtp.gmail.com', :authentication => 'plain', :user_name => '自分のアドレス', :password => 'xqnqevavcekxjufp' }
あなたの回答
tips
プレビュー