やったこと
Gemfile
1gem 'whenever', require: false
Terminal
1$ bundle install --path vendor/bundle 2$ bundle exec wheneverize .
config/schedule.rb
set :output, 'log/crontab.log' set :environment, :development every 1.minutes do runner "Test.hoge" command "echo 'hogehoge'" end
lib/tasks/batch.rb
class test def hoge "実行したい処理" end end
Terminal
1$ bundle exec whenever --update-crontab
エラー
log/crontab.log
/bin/bash: bundle: command not found /bin/bash: bundle: command not found
bundleコマンドが見つからないと言われているのはわかるのですが、これの解決方法がわからず…
よろしくお願い致します。
あなたの回答
tips
プレビュー