14 lines
		
	
	
		
			166 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			166 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| module HomebrewEnvExtension
 | |
|   def use_clang?
 | |
|     compiler == :clang
 | |
|   end
 | |
| 
 | |
|   def use_gcc?
 | |
|     compiler == :gcc
 | |
|   end
 | |
| 
 | |
|   def use_llvm?
 | |
|     compiler == :llvm
 | |
|   end
 | |
| end
 | 
