Installed a toolmaker hero with homegrown, and the master is not included

I use the homebrew package manager on Mac OSX, and I installed the heroku-toolbelt package, which should include git, the hero CLI, and the wizard. It seems that these are only the first two:

$ brew info heroku-toolbelt heroku-toolbelt: stable 3.20.0 https://toolbelt.heroku.com/other /usr/local/Cellar/heroku-toolbelt/3.20.0 (438 files, 3.5M) * Built from source From: https://github.com/Homebrew/homebrew/blob/master/Library/Formula/heroku-toolbelt.rb $ which heroku /usr/local/bin/heroku $ which foreman $ heroku --version heroku-toolbelt/3.21.4 (x86_64-darwin13.0) ruby/2.1.2 $ foreman bash: foreman: command not found 

Any ideas why this doesn't appear? Thank you very much in advance.

+5
source share
3 answers

The heroku-toolbelt , which is shipped inside the homebrew, is a "standalone" version . This version includes only the Heroku client.

What you can do is get the Mac OS X version . Then you can use the "Heroku client" and "Foreman" or choose to install "Foreman" (saving the "Heroku client" from homebrew).

+2
source

If the heroku-toolbelt is installed through a homegrown, you have a standalone version, as Daniel said.

If you want to install the wizard as standalone, but with the package manager, you can install it as a gem:

 gem install foreman 

or

 sudo gem install foreman 

depending on how your ruby ​​is set up.

More information on installing the wizard can be found on the home page .

+8
source

https://devcenter.heroku.com/changelog-items/692 Starting August 12, 2015, new Heroku Toolbelt installations will not ship with Foreman. The heroku local team replaced the wizard.

0
source

Source: https://habr.com/ru/post/1210273/


All Articles