2012-06-21

CentOS5でRails3.2.6がgemで入らない!

  1. ruby -v  
  2. >> ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-linux]  
  3. gem -v  
  4. >> 1.8.24  
な環境で試してみたところ
  1. gem install rails --no-ri --no-rdoc  
  2. >> ERROR:  While executing gem ... (Gem::DependencyError)  
  3.     Unable to resolve dependencies: railties requires rake (>= 0.8.7), rack-ssl (~> 1.3.2), thor (< 2.0, >= 0.14.6), rdoc (~> 3.4); actionmailer requires mail (~> 2.4.4); activerecord requires arel (~> 3.0.2), tzinfo (~> 0.3.29); actionpack requires journey (~> 1.0.1), sprockets (~> 2.1.3), erubis (~> 2.7.0)  
と怒られてしまいます。
そんなときはbundlerを使うと良いようです。
早速インストール
  1. gem install bundler --no-ri --no-rdoc  
railsをインストールするために設定ファイルを作成
  1. cat <<"EOF" > Gemfile  
  2. source 'https://rubygems.org'  
  3. gem 'rails', '3.2.6'  
  4. EOF  
そして、いざインストール実行!
  1. bundle install  
  2. >> Fetching gem metadata from https://rubygems.org/.........  
  3. Installing rake (0.9.2.2)  
  4. Installing i18n (0.6.0)  
  5. Installing multi_json (1.3.6)  
  6. Installing activesupport (3.2.6)  
  7. Installing builder (3.0.0)  
  8. Installing activemodel (3.2.6)  
  9. Installing erubis (2.7.0)  
  10. Installing journey (1.0.4)  
  11. Installing rack (1.4.1)  
  12. Installing rack-cache (1.2)  
  13. Installing rack-test (0.6.1)  
  14. Installing hike (1.2.1)  
  15. Installing tilt (1.3.3)  
  16. Installing sprockets (2.1.3)  
  17. Installing actionpack (3.2.6)  
  18. Installing mime-types (1.19)  
  19. Installing polyglot (0.3.3)  
  20. Installing treetop (1.4.10)  
  21. Installing mail (2.4.4)  
  22. Installing actionmailer (3.2.6)  
  23. Installing arel (3.0.2)  
  24. Installing tzinfo (0.3.33)  
  25. Installing activerecord (3.2.6)  
  26. Installing activeresource (3.2.6)  
  27. Using bundler (1.1.4)  
  28. Installing json (1.7.3) with native extensions  
  29. Installing rack-ssl (1.3.2)  
  30. Installing rdoc (3.12)  
  31. Installing thor (0.15.3)  
  32. Installing railties (3.2.6)  
  33. Installing rails (3.2.6)  
  34. Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed.  
  35. Post-install message from rdoc:  
  36. Depending on your version of ruby, you may need to install ruby rdoc/ri data:  
  37.   
  38. <= 1.8.6 : unsupported  
  39.  = 1.8.7 : gem install rdoc-data; rdoc-data --install  
  40.  = 1.9.1 : gem install rdoc-data; rdoc-data --install  
  41. >= 1.9.2 : nothing to do! Yay!  
そして、確認
  1. rails -v  
  2. >> Rails 3.2.6  
はい、入りましたヾ(*・ω・)シ しかし、いざrakeコマンド実行してみると
  1. rake aborted!  
  2. Could not find a JavaScript runtime. See https://github.com/sstephenson/execjs for a list of available runtimes.  
な感じで怒られてしまいました(´・ω・`)
execjsとtherubyracerをインストールしてあげれば良いみたいなので
  1. cat <<"EOF" >> Gemfile  
  2. gem 'execjs'  
  3. gem 'therubyracer'  
  4. EOF  
として、bundle updateしてあげればrakeもちゃんと動きました。

0 件のコメント:

コメントを投稿