chef
https://github.com/opscode/chef
Ruby
A systems integration framework, built to bring the benefits of configuration management to your entire infrastructure.
Chef::Client#converge_and_save
Converge the node via and then save it if successful. We don't want to change the old API on the `converge` method to have it perform saving. So we wrap it in this method. TODO given this seems to be pretty internal stuff, how badly do we need to split this stuff up?
Edit
git clone [email protected]:opscode/chef.git
cd chef
open lib/chef/client.rb
Contribute
# Make a new branchgit checkout -b -your-name--update-docs-Chef--Client-converge_and_save-for-pr
# Commit to gitgit add lib/chef/client.rbgit commit -m "better docs for Chef::Client#converge_and_save"
# Open pull requestgem install hub # on a mac you can `brew install hub`
hub fork
git push <your name> -your-name--update-docs-Chef--Client-converge_and_save-for-pr
hub pull-request
# Celebrate!