Zhang Jian (张健)

Results 3 comments of Zhang Jian (张健)

Thanks @MatthiasWinkelmann ```bash gem install mysql2 -- \ --with-mysql-lib=/usr/local/Cellar/mysql/8.0.26/lib \ --with-mysql-dir=/usr/local/Cellar/mysql/8.0.26 \ --with-mysql-config=/usr/local/Cellar/mysql/8.0.26/bin/mysql_config \ --with-mysql-include=/usr/local/Cellar/mysql/8.0.26/include ``` works for me.

Yes, you are right. This is the most important thing I need to do. Thank you. This issue will open until we have done the work. Thank you kungs!

Thanks @kylekeesling ```ruby # works in Rails 8 class RakeTaskJob < ApplicationJob queue_as :default def perform(task_name) YourAppName::Application.load_tasks Rake::Task[task_name].invoke end end ``` ```yml production: refresh_sitemap_job: class: RakeTaskJob args: "sitemap:refresh:no_ping" schedule: every...