14 lines
		
	
	
		
			200 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			200 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| module Hbc
 | |
|   class CLI
 | |
|     class InternalUseBase < Base
 | |
|       def self.command_name
 | |
|         super.sub(%r{^internal_}i, "_")
 | |
|       end
 | |
| 
 | |
|       def self.visible
 | |
|         false
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| end
 | 
