blob: fa65d8cf2c58f08631407c26fdff7c818eb1f4f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
  | 
# `brew readall` tries to import all formulae one-by-one.
# This can be useful for debugging issues across all formulae
# when making significant changes to formula.rb,
# or to determine if any current formulae have Ruby issues
require 'formula'
require 'cmd/tap'
module Homebrew
  def readall
    formulae = []
    if ARGV.empty?
      formulae = Formula.names
    else
      user, repo = tap_args
      user.downcase!
      repo.downcase!
      tap = HOMEBREW_LIBRARY/"Taps/#{user}/homebrew-#{repo}"
      raise "#{tap} does not exist!" unless tap.directory?
      tap.find_formula { |f| formulae << f }
    end
    formulae.sort.each do |n|
      begin
        Formula.factory(n)
      rescue Exception => e
        onoe "problem in #{Formula.path(n)}"
        puts e
        Homebrew.failed = true
      end
    end
  end
end
  |