Skip to content

Instantly share code, notes, and snippets.

@parshap
Last active December 19, 2015 06:39
Show Gist options
  • Save parshap/5913107 to your computer and use it in GitHub Desktop.
Save parshap/5913107 to your computer and use it in GitHub Desktop.
RUN_LIST.each do |recipe|
chef.add_recipe recipe
end
RUN_LIST.each &chef.add_recipe
RUN_LIST.forEach(function(recipe) {
chef.add_recipe(recipe)
});
RUN_LIST.forEach(chef.add_recipe.bind(chef));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment