mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			215 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			215 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| if [ -d /usr/share/rbenv/shims ]; then
 | |
|   export PATH=/usr/share/rbenv/shims:$PATH
 | |
|   export RBENV_VERSION=2.1.2-github
 | |
|   export RUBY_VERSION=2.1.2-github
 | |
| fi
 | |
| 
 | |
| echo "Using $(rbenv version)"
 | |
| 
 | |
| bundle exec rake
 |