17 lines
		
	
	
		
			335 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			335 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| module Validators
 | |
|   class Helpers; end
 | |
|   class DeployEnv; end
 | |
|   class Key; end
 | |
|   class Image; end
 | |
| end
 | |
| 
 | |
| require "db/validators/base"
 | |
| [
 | |
|   'db/validators/helpers/*.rb',
 | |
|   'db/validators/deploy_env/*.rb',
 | |
|   'db/validators/key/*.rb',
 | |
|   'db/validators/image/*.rb'
 | |
| ].each do |files_regexp|
 | |
|   Dir[files_regexp].each {|file| require file }
 | |
| end
 | 
