Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WinでRailsInstaller3.3.0 の問題を修正する記述を追加 #291

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 25 additions & 2 deletions _posts/2013-05-02-install.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,31 @@ Mac OS X 10.7 およびそれ以前のバージョンでは、 Atom エディタ

### *1.* Install Rails

[RailsInstaller](https://s3.amazonaws.com/railsinstaller/Windows/railsinstaller-3.2.1.exe) をダウンロードして、実行します。
インストールのオプションは全てデフォルトを選択します。
[RailsInstaller](https://s3.amazonaws.com/railsinstaller/Windows/railsinstaller-3.3.0.exe) をダウンロードして、実行します。インストールのオプションは全てデフォルトを選択します。

インストール後にRailsInstaller3.3.0の問題を修正します。 以下は `C:¥RailsInstaller` フォルダへインストールした前提で書いています。

`C:¥RailsInstaller¥Ruby2.3.0¥bin¥bundle.bat` ファィルをエディタで開きます。 `C:\Users\emachnic\GitRepos\railsinstaller-windows\stage\Ruby2.3.0\bin\` と書かれた箇所を全て削除します。修正後のファイルは以下のようになります。

{% highlight sh %}
@ECHO OFF
IF NOT "%~f0" == "~f0" GOTO :WinNT
@"ruby.exe" "bundle" %1 %2 %3 %4 %5 %6 %7 %8 %9
GOTO :EOF
:WinNT
@"ruby.exe" "%~dpn0" %*
{% endhighlight %}

次に、 `C:¥RailsInstaller¥Ruby2.3.0¥bin¥rails.bat` ファイルを開き、同様に修正します。修正後のファイルは以下のようになります。

{% highlight sh %}
@ECHO OFF
IF NOT "%~f0" == "~f0" GOTO :WinNT
@"ruby.exe" "rails" %1 %2 %3 %4 %5 %6 %7 %8 %9
GOTO :EOF
:WinNT
@"ruby.exe" "%~dpn0" %*
{% endhighlight %}

`Command Prompt with Ruby on Rails`から以下のコマンドを実行します:

Expand Down