vagrant

https://github.com/mitchellh/vagrant

Ruby

Vagrant is a tool for building and distributing development environments.

VagrantPlugins::Chef::Config::Base#install

Install Chef on the system if it does not exist. Default is true.
This is a trinary attribute (it can have three values):

- true (bool) install Chef
- false (bool) do not install Chef
- "force" (string) install Chef, even if it is already installed at
  the proper version

Source | Google | Stack overflow

Edit

git clone [email protected]:mitchellh/vagrant.git

cd vagrant

open plugins/provisioners/chef/config/base.rb

Contribute

# Make a new branch

git checkout -b -your-name--update-docs-VagrantPlugins--Chef--Config--Base-install-for-pr


# Commit to git

git add plugins/provisioners/chef/config/base.rbgit commit -m "better docs for VagrantPlugins::Chef::Config::Base#install"


# Open pull request

gem install hub # on a mac you can `brew install hub`

hub fork

git push <your name> -your-name--update-docs-VagrantPlugins--Chef--Config--Base-install-for-pr

hub pull-request


# Celebrate!