mirror of
				https://github.com/DatabaseCleaner/database_cleaner
				synced 2023-03-27 23:22:03 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			214 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			214 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
set -euo pipefail
 | 
						|
IFS=$'\n\t'
 | 
						|
set -vx
 | 
						|
 | 
						|
bundle check || bundle install
 | 
						|
cp spec/support/sample.config.yml spec/support/config.yml
 | 
						|
 | 
						|
for adapter in adapters/*; do
 | 
						|
  (cd $adapter && bin/setup)
 | 
						|
done
 | 
						|
 |