| 
									
										
										
										
											2016-07-10 02:27:13 +02:00
										 |  |  | #:  * `tap-info`: | 
					
						
							|  |  |  | #:    Display a brief summary of all installed taps. | 
					
						
							|  |  |  | #: | 
					
						
							|  |  |  | #:  * `tap-info` (`--installed`|<taps>): | 
					
						
							|  |  |  | #:    Display detailed information about one or more <taps>. | 
					
						
							|  |  |  | #: | 
					
						
							|  |  |  | #:    Pass `--installed` to display information on all installed taps. | 
					
						
							| 
									
										
										
										
											2016-04-08 16:28:43 +02:00
										 |  |  | #: | 
					
						
							|  |  |  | #:  * `tap-info` `--json=`<version> (`--installed`|<taps>): | 
					
						
							|  |  |  | #:    Print a JSON representation of <taps>. Currently the only accepted value | 
					
						
							|  |  |  | #:    for <version> is `v1`. | 
					
						
							|  |  |  | #: | 
					
						
							|  |  |  | #:    Pass `--installed` to get information on installed taps. | 
					
						
							|  |  |  | #: | 
					
						
							|  |  |  | #:    See the docs for examples of using the JSON: | 
					
						
							|  |  |  | #:    <https://github.com/Homebrew/brew/blob/master/share/doc/homebrew/Querying-Brew.md> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-07 14:11:04 +08:00
										 |  |  | require "tap" | 
					
						
							| 
									
										
										
										
											2015-06-08 19:13:05 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | module Homebrew | 
					
						
							|  |  |  |   def tap_info | 
					
						
							|  |  |  |     if ARGV.include? "--installed" | 
					
						
							|  |  |  |       taps = Tap | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |       taps = ARGV.named.map do |name| | 
					
						
							| 
									
										
										
										
											2015-12-07 14:11:04 +08:00
										 |  |  |         Tap.fetch(name) | 
					
						
							| 
									
										
										
										
											2015-06-08 19:13:05 +08:00
										 |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ARGV.json == "v1" | 
					
						
							|  |  |  |       print_tap_json(taps) | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |       print_tap_info(taps) | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   private | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def print_tap_info(taps) | 
					
						
							|  |  |  |     if taps.none? | 
					
						
							|  |  |  |       tap_count = 0
 | 
					
						
							|  |  |  |       formula_count = 0
 | 
					
						
							|  |  |  |       command_count = 0
 | 
					
						
							| 
									
										
										
										
											2015-07-22 18:07:30 +08:00
										 |  |  |       pinned_count = 0
 | 
					
						
							| 
									
										
										
										
											2016-07-10 02:27:59 +02:00
										 |  |  |       private_count = 0
 | 
					
						
							| 
									
										
										
										
											2015-06-08 19:13:05 +08:00
										 |  |  |       Tap.each do |tap| | 
					
						
							|  |  |  |         tap_count += 1
 | 
					
						
							|  |  |  |         formula_count += tap.formula_files.size | 
					
						
							|  |  |  |         command_count += tap.command_files.size | 
					
						
							| 
									
										
										
										
											2015-07-22 18:07:30 +08:00
										 |  |  |         pinned_count += 1 if tap.pinned? | 
					
						
							| 
									
										
										
										
											2016-07-10 02:27:59 +02:00
										 |  |  |         private_count += 1 if tap.private? | 
					
						
							| 
									
										
										
										
											2015-06-08 19:13:05 +08:00
										 |  |  |       end | 
					
						
							|  |  |  |       info = "#{tap_count} tap#{plural(tap_count)}" | 
					
						
							| 
									
										
										
										
											2015-07-22 18:07:30 +08:00
										 |  |  |       info += ", #{pinned_count} pinned" | 
					
						
							| 
									
										
										
										
											2016-07-10 02:27:59 +02:00
										 |  |  |       info += ", #{private_count} private" | 
					
						
							| 
									
										
										
										
											2015-06-08 19:13:05 +08:00
										 |  |  |       info += ", #{formula_count} formula#{plural(formula_count, "e")}" | 
					
						
							|  |  |  |       info += ", #{command_count} command#{plural(command_count)}" | 
					
						
							|  |  |  |       info += ", #{Tap::TAP_DIRECTORY.abv}" if Tap::TAP_DIRECTORY.directory? | 
					
						
							|  |  |  |       puts info | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |       taps.each_with_index do |tap, i| | 
					
						
							|  |  |  |         puts unless i == 0
 | 
					
						
							|  |  |  |         info = "#{tap}: " | 
					
						
							|  |  |  |         if tap.installed? | 
					
						
							| 
									
										
										
										
											2015-09-21 14:16:11 +02:00
										 |  |  |           info += tap.pinned? ? "pinned" : "unpinned" | 
					
						
							| 
									
										
										
										
											2016-07-10 02:27:59 +02:00
										 |  |  |           info += ", private" if tap.private? | 
					
						
							| 
									
										
										
										
											2015-09-21 14:16:11 +02:00
										 |  |  |           if (formula_count = tap.formula_files.size) > 0
 | 
					
						
							|  |  |  |             info += ", #{formula_count} formula#{plural(formula_count, "e")}" | 
					
						
							|  |  |  |           end | 
					
						
							|  |  |  |           if (command_count = tap.command_files.size) > 0
 | 
					
						
							|  |  |  |             info += ", #{command_count} command#{plural(command_count)}" | 
					
						
							|  |  |  |           end | 
					
						
							|  |  |  |           info += ", no formulae/commands" if formula_count + command_count == 0
 | 
					
						
							| 
									
										
										
										
											2015-06-08 19:13:05 +08:00
										 |  |  |           info += "\n#{tap.path} (#{tap.path.abv})" | 
					
						
							| 
									
										
										
										
											2015-08-13 14:56:14 +08:00
										 |  |  |           info += "\nFrom: #{tap.remote.nil? ? "N/A" : tap.remote}" | 
					
						
							| 
									
										
										
										
											2015-06-08 19:13:05 +08:00
										 |  |  |         else | 
					
						
							|  |  |  |           info += "Not installed" | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |         puts info | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def print_tap_json(taps) | 
					
						
							|  |  |  |     puts Utils::JSON.dump(taps.map(&:to_hash)) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | end |