rails rufus scheduler不在守护进程中运行

时间:2014-03-31 06:38:53

标签: ruby-on-rails ruby ruby-on-rails-4

我目前正在使用'rails s -d'

将我的rails应用程序作为守护程序加载

我正在尝试安排以下任务

scheduler = Rufus::Scheduler.new

scheduler.every '1h' do
      begin    
        puts "Actioning scheduler"  
        system("source ~/.bashrc")
        system("bundle exec rspec")

      rescue Exception => e    
        puts e 
      end
 end

当我将rails服务器作为守护进程运行时似乎没有发生任何事情,但如果我正常启动它就没有问题。

使用rails 4.0,我做错了什么?

0 个答案:

没有答案