外部设置Ruby加载路径

Bri*_*ris 28 ruby rubygems

我有一个自定义的Ruby库目录,我想在Ruby执行时自动添加到Ruby的加载路径中.我知道我可以使用Ruby的-I选项,但我想知道是否有类似我可以设置的环境变量,它将全局确定Ruby的加载路径.

顺便说一句,我的高级任务是在没有root的Linux机器上安装Ruby Gems,所以我需要在非标准位置有一个Ruby加载路径.我按照http://rubygems.org/read/chapter/3#page83("在用户目录中安装RubyGems")的说明安装了RubyGems,但gem命令没有获取非标准的加载路径.也许我错过了一些明显的东西,让自己变得更难?

Mar*_*ter 39

从pickaxe书中尝试Ruby及其世界章节,特别是关于环境变量的部分.摘抄:

RUBYLIB 
  Additional search path for Ruby programs ($SAFE must be 0).
DLN_LIBRARY_PATH
  Search path for dynamically loaded modules.
RUBYLIB_PREFIX
  (Windows only) Mangle the RUBYLIB search path by adding this
  prefix to each component.
Run Code Online (Sandbox Code Playgroud)

  • RUBYLIB做了这个伎俩.我不知道为什么一小时的谷歌搜索无法挖掘这些信息.谢谢! (3认同)

ram*_*ion 5

确保已将已安装的bin目录放在您$PATHgem 命令中以使其正常工作.它应该修改RUBYLIB自己,但如果没有,尝试马丁的答案来解决这个问题.

然后,您可以让您的宝石回家(rubygems安装的宝石存储在哪里)是本地的.

只需使用$GEM_HOME(或设置你的东西~/.gemrc)并检查所有内容gem environment.

% mkdir ~/.gems
% export GEM_HOME=~/.gems
% gem help environment

Usage: gem environment [arg] [options]

  Common Options:
    -h, --help                       Get help on this command
    -V, --[no-]verbose               Set the verbose level of output
    -q, --quiet                      Silence commands
        --config-file FILE           Use this config file instead of default
        --backtrace                  Show stack backtrace on errors
        --debug                      Turn on Ruby debugging


  Arguments:
    packageversion  display the package version
    gemdir          display the path where gems are installed
    gempath         display path used to search for gems
    version         display the gem format version
    remotesources   display the remote gem servers
           display everything

  Summary:
    Display information about the RubyGems environment

  Description:
    The RubyGems environment can be controlled through command line arguments,
    gemrc files, environment variables and built-in defaults.

    Command line argument defaults and some RubyGems defaults can be set in
    ~/.gemrc file for individual users and a /etc/gemrc for all users.  A gemrc
    is a YAML file with the following YAML keys:

      :sources: A YAML array of remote gem repositories to install gems from
      :verbose: Verbosity of the gem command.  false, true, and :really are the
                levels
      :update_sources: Enable/disable automatic updating of repository metadata
      :backtrace: Print backtrace when RubyGems encounters an error
      :bulk_threshold: Switch to a bulk update when this many sources are out of
                       date (legacy setting)
      :gempath: The paths in which to look for gems
      gem_command: A string containing arguments for the specified gem command

    Example:

      :verbose: false
      install: --no-wrappers
      update: --no-wrappers

    RubyGems' default local repository can be overriden with the GEM_PATH and
    GEM_HOME environment variables.  GEM_HOME sets the default repository to
    install into.  GEM_PATH allows multiple local repositories to be searched
    for
    gems.

    If you are behind a proxy server, RubyGems uses the HTTP_PROXY,
    HTTP_PROXY_USER and HTTP_PROXY_PASS environment variables to discover the
    proxy server.

    If you are packaging RubyGems all of RubyGems' defaults are in
    lib/rubygems/defaults.rb.  You may override these in
    lib/rubygems/defaults/operating_system.rb