ruby - ruby 中的 "$:"是什么?

标签 ruby rubygems load-path

通常出现在 .gemspec 文件中。例如。 i18n.gemspec .

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

最佳答案

Pre-defined variables
$!         The exception information message set by 'raise'.
$@         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.

上面的快捷方式是一个不幸的 Perl 时代错误!其中一些有可用的“英文名称”,这是不言自明的,如果有的话应该使用。

另请参阅:https://docs.ruby-lang.org/en/2.4.0/globals_rdoc.html

关于ruby - ruby 中的 "$:"是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7846426/

相关文章:

ruby-on-rails - 在生产中禁用 GraphQL 自省(introspection)请求

ruby-on-rails - 安装了 RVM,rvm 命令不起作用

ruby - 尝试在 Ubuntu 10.10 上运行 mongo3 gem。帮助!

path - Julia :尝试设置值时未定义 JULIA_LOAD_PATH

Ruby ActiveRecord 获取到最后一个条目的范围?

ruby-on-rails - 如何使用驼峰键名称从 Rails 返回 JSON

ruby-on-rails - 在 Rails 应用程序中创建 html 标签包装器

javascript - 哪些 ruby​​ 图表库(gems)允许我使用时间作为 x 轴创建散点图?

ruby - Ocra 和脚本在 Rubygems gemspec 中标记为可执行文件

ruby - 为什么即使 "file.rb"不在加载路径中,加载 "."仍然可以工作?