mirror of
				https://github.com/dcarrillo/prezto.git
				synced 2025-11-04 07:29:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			298 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			298 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#
 | 
						|
# Displays the path to the Ruby application root directory.
 | 
						|
#
 | 
						|
# Authors:
 | 
						|
#   Sorin Ionescu <sorin.ionescu@gmail.com>
 | 
						|
#
 | 
						|
 | 
						|
local root_dir="$PWD"
 | 
						|
 | 
						|
while [[ "$root_dir" != '/' ]]; do
 | 
						|
  if [[ -f "$root_dir/Gemfile" ]]; then
 | 
						|
    print "$root_dir"
 | 
						|
    break
 | 
						|
  fi
 | 
						|
  root_dir="$root_dir:h"
 | 
						|
done
 | 
						|
 | 
						|
return 1
 | 
						|
 |