https://github.com/alt3/chef-heroku
Chef cookbook for installing Heroku as standalone, toolbelt or gem.
https://github.com/alt3/chef-heroku
Last synced: 12 months ago
JSON representation
Chef cookbook for installing Heroku as standalone, toolbelt or gem.
- Host: GitHub
- URL: https://github.com/alt3/chef-heroku
- Owner: alt3
- License: mit
- Created: 2014-10-10T09:14:39.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-11-21T13:28:41.000Z (over 11 years ago)
- Last Synced: 2025-03-06T11:46:05.225Z (over 1 year ago)
- Language: Ruby
- Homepage:
- Size: 348 KB
- Stars: 0
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# heroku cookbook
[](https://travis-ci.org/alt3/chef-heroku)
Installs Heroku using one of the following installation types:
- [standalone](https://toolbelt.heroku.com/standalone)
- [toolbelt](https://toolbelt.heroku.com/debian)
- [gem](https://rubygems.org/gems/heroku)
# Attributes
- `node[:heroku][:preferred_install]` - Specifies installation method (defaults to toolbelt)
- `node[:heroku][:standalone][:source_url]` - URL to heroku binary.
- `node[:heroku][:toolbelt][:apt_repo]` - URL to heroku apt repository
- `node[:heroku][:toolbelt][:apt_key]` - URL to apt key source
- `node[:heroku][:toolbelt][:apt_key_id]` - Key id of the apt key source
# Recipes
## heroku::default
Convenience recipe to include the preferred installation method using `node[:heroku][:preferred_install]`.
## heroku::standalone
Downloads binary from heroku.com and adds it to the user's PATH.
## heroku::toolbelt
Chef apt toolbelt installation (not using Heroku's install-ubuntu.sh script).
##heroku::gem
@todo: not implemented yet
# Contributing
1. Fork it ( https://github.com/alt3/chef-heroku/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Make sure test-kitchen and foodcritic tests pass
4. Commit your changes (`git commit -am 'Adds some feature'`)
5. Push to the branch (`git push origin my-new-feature`)
6. Create a new Pull Request