aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Contributions/examples/brew-upgrade.rb
blob: 3ffb570acc4a0826825a027d3ec4e8d8491ea8d6 (plain)
1
2
3
4
5
6
7
# Updates all outdated brews
# See: http://github.com/mxcl/homebrew/issues/issue/1324

require 'cmd/outdated'
require 'cmd/install'

Homebrew.install_formulae Homebrew.outdated_brews.map{ |_keg, name, _version| Formula.factory name }