简体   繁体   中英

How to run heroku commands in Ruby file?

I want to run heroku commands (such as 'heroku scale worker=5') in a ruby on rails class. Example:

class Foo
  def self.perform
    Heroku.run('heroku scale worker=10')
  end
end

Is there a gem or plugin to handle this?

Yes there's the heroku-api gem:

https://github.com/heroku/heroku.rb

HTH?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM