blob: 6c7831fdeef2a9aa92df8ce0c1697ecedfa6995e (
plain)
1
2
3
4
5
6
7
8
9
10
11
  | 
# Updates all outdated brews
# See: http://github.com/mxcl/homebrew/issues/issue/1324
# patch ARGV to use all of the outdated packages as the names passed in
module HomebrewArgvExtension
  def formulae
    @formulae = outdated_brews.map {|_keg, name, _version| Formula.factory name}
  end
end
brew_install
  |