rails:173
From: take_tk <ggb03124@n...>
Date: Fri, 27 May 2005 13:54:32 +0900
Subject: [rails:173] Re: vineでのインストールは可能ですか?
たけ(tk)です [rails:170] Re: vineでのインストールは可能ですか? にて k_ryu@p... さん曰く: > vineでもインストール出来ます。少なくともvine3.1では出来ました。 ありがとうございます、インストールは出来たようです。インストールまでの記 録を採ってみました。 (1)ruby本体のインストール [tk@EDiCube-02 download]$ sudo apt-get install ruby libruby ruby-openssl eruby (2)rubygems-0.8.10.tgz のダウンロード。お好みのやり方でOK。今回は curl とやらを使ってみた。 最新版のバージョンと url はgemの公式サイト http://rubyforge.org/projects/rubygems/ から取得する。 [tk@EDiCube-02 download]$ curl -O http://rubyforge.org/frs/download.php/3700/rubygems-0.8.10.tgz (3)rubygems-0.8.10.tgz のインストール [tk@EDiCube-02 download]$ tar zxvf rubygems-0.8.10.tgz [tk@EDiCube-02 download]$ cd rubygems-0.8.10 [tk@EDiCube-02 rubygems-0.8.10]$ sudo ruby setup.rb (4)gem で rails をインストール [tk@EDiCube-02 rubygems-0.8.10]$ sudo gem install rails Attempting local installation of 'rails' Local gem file not found: rails*.gem Attempting remote installation of 'rails' Updating Gem source index for: http://gems.rubyforge.org Install required dependency rake? [Yn] y Install required dependency activesupport? [Yn] y Install required dependency activerecord? [Yn] y Install required dependency actionpack? [Yn] y Install required dependency actionmailer? [Yn] y Install required dependency actionwebservice? [Yn] y Successfully installed rails-0.12.1 Successfully installed rake-0.5.4 Successfully installed activesupport-1.0.4 Successfully installed activerecord-1.10.1 Successfully installed actionpack-1.8.1 Successfully installed actionmailer-0.9.1 Successfully installed actionwebservice-0.7.1 Installing RDoc documentation for rake-0.5.4... lib/rake.rb:656:18: unexpected token: '#<RubyToken::TkLPAREN:0x415707e8 @text="(", @char_no=7, @line_no=656>' Installing RDoc documentation for activesupport-1.0.4... Installing RDoc documentation for activerecord-1.10.1... Installing RDoc documentation for actionpack-1.8.1... Installing RDoc documentation for actionmailer-0.9.1... Installing RDoc documentation for actionwebservice-0.7.1... [tk@EDiCube-02 rubygems-0.8.10]$ * rake-0.5.4 のドキュメントのインストールに失敗しているようだが、気に しなくても良いだろう。 ---- gem で「Install required dependency rake? [Yn] y」の y を省略するオプショ ンは何だろう?(全部 y で答えるオプション)。(↓)のどちらかか? [tk@EDiCube-02 download]$ gem help install -f, --[no-]force Force gem to install, bypassing dependency checks --include-dependencies Unconditionally install the required dependent gems ---- ヘルプのデフォルトの表記が間違っているようだ。 [tk@EDiCube-02 download]$ gem help install ・・・ -l, --local Restrict operations to the LOCAL domain (default) -r, --remote Restrict operations to the REMOTE domain -b, --both Allow LOCAL and REMOTE operations ↓ -l, --local Restrict operations to the LOCAL domain -r, --remote Restrict operations to the REMOTE domain -b, --both Allow LOCAL and REMOTE operations (default) Take_tk = KUMAGAI Hidetake たけ(tk)=熊谷秀武 -- ML: rails@r... 使い方: http://QuickML.com/
170 2005-05-26 16:57 [k_ryu@p... ] Re: vineでのインストールは可 能ですか? -> 173 2005-05-27 06:54 ┗[ggb03124@n... ]