2011-10-21 41 views
6

Thường được thấy trong tệp .gemspec. ví dụ. i18n.gemspec.

$: << File.expand_path('../lib', __FILE__) 
+0

thể trùng lặp của [Trong ngôn ngữ lập trình Ruby, tên của $ là gì:] (http://stackoverflow.com/questions/7634686/ trong ngôn ngữ lập trình-ruby-cái gì-là-tên-của) –

Trả lời

13
Pre-defined variables 
$!   The exception information message set by 'raise'. 
[email protected]   Array of backtrace of the last exception thrown. 
$&   The string matched by the last successful match. 
$`   The string to the left of the last successful match. 
$'   The string to the right of the last successful match. 
$+   The highest group matched by the last successful match. 
$1   The Nth group of the last successful match. May be > 1. 
$~   The information about the last match in the current scope. 
$=   The flag for case insensitive, nil by default. 
$/   The input record separator, newline by default. 
$\   The output record separator for the print and IO#write. Default is nil. 
$,   The output field separator for the print and Array#join. 
$;   The default separator for String#split. 
$.   The current input line number of the last file that was read. 
$<   The virtual concatenation file of the files given on command line (or from $stdin if no files were given). 
$>   The default output for print, printf. $stdout by default. 
$_   The last input line of string by gets or readline. 
$0   Contains the name of the script being executed. May be assignable. 
$*   Command line arguments given for the script sans args. 
$$   The process number of the Ruby running this script. 
$?   The status of the last executed child process. 
$:   Load path for scripts and binary modules by load or require. 
$"   The array contains the module names loaded by require. 
$DEBUG  The status of the -d switch. 
$FILENAME Current input file from $<. Same as $<.filename. 
$LOAD_PATH The alias to the $:. 
$stderr The current standard error output. 
$stdin  The current standard input. 
$stdout The current standard output. 
$VERBOSE The verbose flag, which is set by the -v switch. 
$-0  The alias to $/. 
$-a  True if option -a is set. Read-only variable. 
$-d  The alias to $DEBUG. 
$-F  The alias to $;. 
$-i  In in-place-edit mode, this variable holds the extension, otherwise nil. 
$-I  The alias to $:. 
$-l  True if option -l is set. Read-only variable. 
$-p  True if option -p is set. Read-only variable. 
$-v  The alias to $VERBOSE. 
$ -w  True if option -w is set. 

các phím tắt ở trên là một lỗi thời Perl không may! Có "tên tiếng Anh" có sẵn cho một số người trong số họ, đó là tự giải thích, và nên được sử dụng nếu có.

also see: http://ruby.runpaint.org/globals

also see: http://www.zenspider.com/Languages/Ruby/QuickRef.html

2

$: tương đương với $LOAD_PATH, ví dụ: danh sách các thư mục mà bạn có thể require tập tin từ mà không đưa ra một con đường cụ thể hơn. Bạn sẽ tìm thấy số Ruby QuickRef hữu ích cho các biến được xác định trước khác mà bạn có thể gặp phải.

3

$: là đường dẫn tải và $LOAD_PATH là bí danh của nó. Khi bạn load/require thư viện/tệp trong ứng dụng ruby ​​của bạn, tìm kiếm ruby ​​trong các thư mục được liệt kê trong $: cho chúng. Với $: << File.expand_path('../lib', __FILE__) bạn thêm một thư mục cụ thể vào đường dẫn tải.