Como configurar o Ruby e as gemas instaladas?

6

Meu atual gem env retorna:

RubyGems Environment:
  - RUBYGEMS VERSION: 1.3.6
  - RUBY VERSION: 1.8.7 (2008-08-11 patchlevel 72) [x86_64-linux]
  - INSTALLATION DIRECTORY: /home/USERNAME/.gems
  - RUBYGEMS PREFIX: /home/narkoz
  - RUBY EXECUTABLE: /usr/bin/ruby1.8
  - EXECUTABLE DIRECTORY: /home/USERNAME/.gems/bin
  - RUBYGEMS PLATFORMS:
    - ruby
    - x86_64-linux
  - GEM PATHS:
     - /home/USERNAME/.gems
     - /usr/lib/ruby/gems/1.8
  - GEM CONFIGURATION:
     - :update_sources => true
     - :verbose => true
     - :benchmark => false
     - :backtrace => false
     - :bulk_threshold => 1000
     - "gempath" => ["/home/USERNAME/.gems", "/usr/lib/ruby/gems/1.8"]
     - "gemhome" => "/home/USERNAME/.gems"
  - REMOTE SOURCES:
     - http://rubygems.org/

Como posso alterar o caminho /home/USERNAME/ para o meu sem desinstalar? SO: Debian Linux

    
por NARKOZ 03.05.2010 / 12:54

2 respostas

1

Crie o arquivo .gemrc em seu caminho inicial. Coloque estas linhas:

gemhome: /home/CHANGE_IT_TO_USERNAME/.gems
gempath:
  - /home/CHANGE_IT_TO_USERNAME/.gems

Documentação sobre o arquivo de configuração gem

    
por 12.10.2010 / 14:10
1

Sinto muito se entendi errado a pergunta, mas você não pode simplesmente fazer isso:

export GEM_PATH=/home/myown

Talvez coloque no seu .bashrc.

    
por 12.10.2010 / 05:46