English 中文(简体)
• 如何在铁路3号发展过程中为推迟参加而进行租火?
原标题:How to get working with hirefire for delayed_job in rails 3 in development?

我正在用铁路3号,使用延迟的_。 Im利用Hirefire在需要时增减工人。 我如何能够在我的发展环境中雇用火力,以测试它正在按原意开展工作。

那么,我也应当如何召集会议,这样,我也会在Heroku Cedar st的生产环境中工作。

最佳回答

你们需要做的是制定<条码>环境至<条码>:地方。 设定为<代码>:noop,但未作规定。 为此,在上创建起火器。 在初始使用者中,添加如下内容:

HireFire.configure do |config|
  if Rails.env.production?
    config.environment = :heroku
   else
    config.environment = :local
  end
  # add any other configuration you want here
end
问题回答

暂无回答




相关问题
Remove ActiveRecord in Rails 3

Now that Rails 3 beta is out, I thought I d have a look at rewriting an app I have just started work on in Rails 3 beta, both to get a feel for it and get a bit of a head-start. The app uses MongoDB ...

When will you upgrade your app to Rails 3? [closed]

Now that the Rails 3 beta is here, let s take a little straw poll. Please tell us briefly what your application does and when you will upgrade it to Rails 3. Or, if you re not planning on upgrading ...

Bundler isn t loading gems

I have been having a problem with using Bundler and being able to access my gems without having to require them somewhere, as config.gem used to do that for me (as far as I know). In my Rails 3 app, I ...

bypass attr_accessible/protected in rails

I have a model that, when it instantiates an object, also creates another object with the same user id. class Foo > ActiveRecord::Base after_create: create_bar private def create_bar Bar....

concat two fields activerecord

I m so used to oracle where you can simply concat(field1, , field2) but if I m using activerecord to find the field1 and field2, and I need a space in between, how do I accomplish this? Cheers ...

热门标签