aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/--cache.rb
AgeCommit message (Expand)Author
2011-03-12Refactor the brew command into one file per commandMax Howell
ass="k">module Homebrew module_function def unpin raise FormulaUnspecifiedError if ARGV.named.empty? ARGV.resolved_formulae.each do |f| if f.pinned? f.unpin elsif !f.pinnable? onoe "#{f.name} not installed" else opoo "#{f.name} not pinned" end end end end