2015-09-06 57 views

回答

1

1)使用.gemrc文件:

創業環境

...

...

RubyGems的環境可以通過命令行參數 ,gemrc文件,環境變量進行控制和內置的默認值。

命令行參數的默認值和一些RubyGems的默認設置可以爲個人用戶〜/ .gemrc文件,並在系統 配置目錄爲所有用戶gemrc設置 。這些文件是YAML文件與 以下YAML鍵:

: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 
:gempath: The paths in which to look for gems 
:disable_default_gem_server: Force specification of gem server host on push 
<gem_command>: A string containing arguments for the specified gem command 

http://guides.rubygems.org/command-reference/#gem-environment

注意最後一行。

open: -e /Users/7stud/Downloads/macvim-snapshot-74/src/MacVim/mvim 

然後命令:例如,如果我把在〜/ .gemrc以下

$ gem open nokogiri 

會的MacVim打開引入nokogiri我的系統上。


2)使用環境變量(每混搭的評論):

創業板開

... ...

打開命令打開寶石在編輯器中,將當前路徑 更改爲gem的源目錄。編輯器可以用-e選項指定, 否則rubygems將在$ EDITOR,$ VISUAL和 $ GEM_EDITOR變量中查找編輯器。

http://guides.rubygems.org/command-reference/

,如果我把東西像的.bash_profile(或.bashrc)中表示:

export GEM_EDITOR="/Users/7stud/Downloads/macvim-snapshot-74/src/MacVim/mvim" 

然後命令:

$ gem open nokogiri 

將打開引入nokogiri在我的系統上的macvim。不要忘了打開新的終端窗口或發出命令:

$ source .bash_profile 

加載你的環境變量.bash_profile中所做的更改。

相關問題