 89717c9d90
			
		
	
	
		89717c9d90
		
	
	
	
	
		
			
			See: * http://github.com/mxcl/homebrew/issues/issue/1359 * http://github.com/mxcl/homebrew/issues/issue/1438
		
			
				
	
	
		
			8 lines
		
	
	
		
			304 B
		
	
	
	
		
			Ruby
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			304 B
		
	
	
	
		
			Ruby
		
	
	
		
			Executable File
		
	
	
	
	
| # See: http://github.com/mxcl/homebrew/issues/issue/1359
 | |
| 
 | |
| to_list = HOMEBREW_CELLAR.children.select { |pn| pn.directory? }
 | |
| to_list.each do |d|
 | |
|   versions = d.children.select { |pn| pn.directory? }.collect { |pn| pn.basename.to_s }
 | |
|   puts "#{d.basename} (#{versions.join(', ')})" if versions.size > 1
 | |
| end
 |