Skip to content

Instantly share code, notes, and snippets.

@sirramongabriel
Last active October 18, 2017 14:30
Show Gist options
  • Select an option

  • Save sirramongabriel/9d4e6577f3a4ee187eadfecfb7e3fcfe to your computer and use it in GitHub Desktop.

Select an option

Save sirramongabriel/9d4e6577f3a4ee187eadfecfb7e3fcfe to your computer and use it in GitHub Desktop.
require 'bundler'
require 'rake'
require 'sidekiq'
namespace :sidekiq do
namespace :start do
task :cron do
system "bundle exec sidekiq -q default"
system "rake cron"
end
task :mailer do
system "bundle exec sidekiq -q default -q mailers -L log/sidekiq.log"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment