代码之家  ›  专栏  ›  技术社区  ›  nonopolarity

在Ruby中,“gem install”是否使用---包含依赖项“…只是文档有点过时了?

  •  11
  • nonopolarity  · 技术社区  · 14 年前

    使用Ruby-on-Rails,如果我

    gem help install
    

    其中一部分说:

    -y, --include-dependencies       Unconditionally install the required
                                     dependent gems
    
    [...]
    
    Defaults:
      --both --version '>= 0' --rdoc --ri --no-force
      --no-test --install-dir c:/ruby/lib/ruby/gems/1.8
    

    但如果我做了一个

    gem install --include-dependencies mysql
    

    INFO:  `gem install -y` is now default and will be removed
    INFO:  use --ignore-dependencies to install only the gems you list
    

    所以看起来像 gem install 始终使用 --include-dependencies gem help install 有点过时了?

    我使用的是最新的gem:

    C:\>gem -v
    1.3.7
    
    C:\>gem update --system
    Updating RubyGems
    Nothing to update
    
    C:\>
    
    2 回复  |  直到 14 年前
        1
  •  13
  •   Slobodan Kovacevic    14 年前

    是的,文件有点过时了。

        2
  •  6
  •   FelixSFD Tushar Panjwani    8 年前

    命令现在是 -include-dependencies --include-dependencies 我是这样用的:

    gem install compass -v 0.12.3 -include-dependencies