Created
September 27, 2011 01:52
-
-
Save atduskgreg/1244103 to your computer and use it in GitHub Desktop.
file_locator.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
puts "Called from: #{File.expand_path(File.dirname("."))}" | |
puts __FILE__ | |
puts "last: " + File.dirname(__FILE__).split("/").last | |
puts pwd = File.expand_path(File.dirname(__FILE__)) | |
puts "parent dir:" | |
ar = pwd.split("/") | |
puts "/#{ar[ar.length-2]}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment