2012-09-26 9 views
5

Ho installato due rubini usando pik, ma non ho installato alcun rubino al di fuori di pik.Installare devkit per Rubini installati pik

Quando scelgo un rubino con pik, e quindi provare a configurare devkit, non i binari vengono aggiunti al file generato config.yml:

# This configuration file contains the absolute path locations of all 
# installed Rubies to be enhanced to work with the DevKit. This config 
# file is generated by the 'ruby dk.rb init' step and may be modified 
# before running the 'ruby dk.rb install' step. To include any installed 
# Rubies that were not automagically discovered, simply add a line below 
# the triple hyphens with the absolute path to the Ruby root directory. 
# 
# Example: 
# 
# --- 
# - C:/ruby19trunk 
# - C:/ruby192dev 
# 
--- 

Ho provato ad aggiungere i binari all'interno PIK al percorso, in modo che config.yml ha

- C:/pik/rubies/ruby-1.9.2-p136 
- C:/Users/agrimm/.pik/rubies/JRuby-170preview1 

ma ottengo

bash-3.1$ ruby dk.rb install 
[INFO] Updating convenience notice gem override for 'C:/pik/rubies/ruby-1.9.2-p136' 
[INFO] Installing 'C:/pik/rubies/ruby-1.9.2-p136/lib/ruby/site_ruby/devkit.rb' 
[ERROR] Unable to find RubyGems in site_ruby or core Ruby. Please 
install RubyGems and rerun 'ruby dk.rb install'. 

C:\DevKit>ruby dk.rb install 
[INFO] Skipping existing gem override for 'C:/pik/rubies/ruby-1.9.2-p136' 
[WARN] Skipping existing DevKit helper library for 'C:/pik/rubies/ruby-1.9.2-p136' 
[ERROR] Unable to find RubyGems in site_ruby or core Ruby. Please 
install RubyGems and rerun 'ruby dk.rb install'. 

C:\DevKit>gem --version 
1.3.7 

C:\DevKit>echo %PATH% 
C:\pik\rubies\ruby-1.9.2-p136\bin;C:\Program Files (x86)\Parallels\Parallels Tools\Applications;C:\pik\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Git\cmd;C:\DevKit\bin 

C:\DevKit>PATH=%PATH%;C:\Users\agrimm\.pik\rubies\JRuby-170preview1\bin 

C:\DevKit>echo %PATH% 
C:\pik\rubies\ruby-1.9.2-p136\bin;C:\Program Files (x86)\Parallels\Parallels Tools\Applications;C:\pik\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Git\cmd;C:\DevKit\bin;C 
:\Users\agrimm\.pik\rubies\JRuby-170preview1\bin 

C:\DevKit>ruby dk.rb install 
[INFO] Skipping existing gem override for 'C:/pik/rubies/ruby-1.9.2-p136' 
[WARN] Skipping existing DevKit helper library for 'C:/pik/rubies/ruby-1.9.2-p136' 
[ERROR] Unable to find RubyGems in site_ruby or core Ruby. Please 
install RubyGems and rerun 'ruby dk.rb install'. 

devo installare un rubino o utside di pik per far funzionare il devkit?

risposta

2

Vedo che questa domanda è vecchia, ma ancora senza risposta. Il tuo post afferma che hai installato le versioni di ruby ​​usando pik. Non so cosa faccia il pik sotto le coperte durante l'installazione di ruby, ma ho sempre usato gli installer Ruby direttamente. Hanno funzionato bene con Pik e ho installato DevKit senza problemi. Nota questo bit dal DevKit docs:

rubino dk.rb init per generare il file config.yml da utilizzare più avanti in questo passaggio. I rubini installati verranno elencati qui (al momento sono rilevati solo quelli installati da un pacchetto di RubyInstaller).

+0

Perché il downvote? Alla fine del post risponde direttamente alla domanda posta dall'OP, ed è così che ho ottenuto pik e devkit per giocare bene insieme. Vedi la pagina di aiuto su downvoting [qui] (http://stackoverflow.com/help/privileges/vote-down) – BitMask777

Problemi correlati