Skip to content
Snippets Groups Projects
Commit dc1be896 authored by Jack Nagel's avatar Jack Nagel
Browse files

tab: allow retrieving tabs from arbitrary kegs


This will be useful in places where we need information about things
other than the currently linked keg, such as `brew info`.

Signed-off-by: default avatarJack Nagel <jacknagel@gmail.com>
parent 07b7dd7a
No related branches found
No related tags found
No related merge requests found
......@@ -27,6 +27,16 @@ class Tab < OpenStruct
return tab
end
def self.for_keg keg
path = keg+'INSTALL_RECEIPT.json'
if path.exist?
self.from_file path
else
self.dummy_tab Formula.factory(keg.parent.basename)
end
end
def self.for_formula f
f = Formula.factory f unless f.kind_of? Formula
path = HOMEBREW_REPOSITORY + 'Library' + 'LinkedKegs' + f.name + 'INSTALL_RECEIPT.json'
......@@ -42,11 +52,15 @@ class Tab < OpenStruct
# TODO:
# This isn't the best behavior---perhaps a future version of Homebrew can
# treat missing Tabs as errors.
Tab.new :used_options => [],
:unused_options => f.options.map { |o, _| o}
self.dummy_tab f
end
end
def self.dummy_tab f
Tab.new :used_options => [],
:unused_options => f.options.map { |o, _| o}
end
def installed_with? opt
used_options.include? opt
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment