Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
416 views
in Technique[技术] by (71.8m points)

ruby $:.unshift File.dirname(__FILE__)

I see this a lot in many ruby scripts but not sure what it means:

$:.unshift File.dirname(__FILE__)
question from:https://stackoverflow.com/questions/9238367/ruby-unshift-file-dirname-file

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

$: is just a shortcut for $LOAD_PATH. __FILE__ is the relative path to the script. This adds the current script directory to the load path.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...