InstallRailsWindows » 履歴 » バージョン 86
Yuumi Yoshida, 2015-01-07 10:54
1 | 69 | Yuumi Yoshida | h1. Ruby on Rails 開発環境の作り方(Windows 7) |
---|---|---|---|
2 | 1 | Yuumi Yoshida | |
3 | 83 | Yuumi Yoshida | _2015/01/07更新_ |
4 | 1 | Yuumi Yoshida | |
5 | h2. WindowsPCの仕様 |
||
6 | 41 | Yuumi Yoshida | |
7 | * メモリー : 1Gbyte以上 |
||
8 | 51 | Yuumi Yoshida | * ディスク空き容量: 500Mbyte以上 |
9 | 41 | Yuumi Yoshida | * CPUの性能: 制限はありませんが、ここ3年以内に作られたPCが望ましい |
10 | 82 | Yuumi Yoshida | * OS: Windows 7, 8 |
11 | 1 | Yuumi Yoshida | |
12 | 41 | Yuumi Yoshida | h2. インストール |
13 | 25 | Yuumi Yoshida | |
14 | 1 | Yuumi Yoshida | |
15 | 83 | Yuumi Yoshida | h3. 1. RailsInstaller |
16 | |||
17 | http://railsinstaller.org/ の *WINDOWS RUBY2.1* をダウンロドし、実行して下さい。 |
||
18 | |||
19 | * よくあるアプリのインストーラーが起動されるので、ライセンスの同意等を行って下さい |
||
20 | * 設定項目はデフォルトのまま使って下さい |
||
21 | * インストーラーが終了すると、コマンドプロンプトが起動され、以下のようにGitで使う名前とメールアドレスを入力して下さい |
||
22 | 84 | Yuumi Yoshida | * *DL is deprecated, please use Fiddle* と表示されますが無視してかまいません |
23 | 83 | Yuumi Yoshida | |
24 | <pre> |
||
25 | Please enter your name, for example mine is: Wayne E. Seguin |
||
26 | name > Yuumi Yoshida ← 名前を入力、半角で入力して下さい |
||
27 | Setting user.name to Yuumi Yoshida |
||
28 | |||
29 | Please enter your email address, for example mine is: wayneeseguin@gmail.com |
||
30 | email > yy@ey-office.com ← メールアドレスを入力して下さい |
||
31 | Setting user.email to yy@ey-office.com |
||
32 | </pre> |
||
33 | |||
34 | * 以下のバージョンの Ruby と Rails がインストールされます |
||
35 | |||
36 | <pre> |
||
37 | ruby: |
||
38 | bin: C:/RailsInstaller/Ruby2.0.0/bin/ruby.exe |
||
39 | version: ruby 2.1.5p273 (2014-11-13 revision 48405) [i386-mingw32] |
||
40 | |||
41 | rails: |
||
42 | bin: C:/RailsInstaller/Ruby2.0.0/bin/rails.bat |
||
43 | version: Rails 4.1.8 |
||
44 | </pre> |
||
45 | |||
46 | * Gitで使うかもしれない ssh の公開キーが表示されます。GitHub等を使う予定があればメモしておいて下さい。 |
||
47 | |||
48 | |||
49 | 84 | Yuumi Yoshida | h3. 2. Railsのアップデート |
50 | 1 | Yuumi Yoshida | |
51 | 84 | Yuumi Yoshida | Ruby on Rails を最新版にアップデートします、コマンドプロンプトから以下のコマンドを実行します。 |
52 | 69 | Yuumi Yoshida | |
53 | 1 | Yuumi Yoshida | <pre> |
54 | 84 | Yuumi Yoshida | gem update -N --system |
55 | gem update rails -N |
||
56 | 1 | Yuumi Yoshida | </pre> |
57 | 69 | Yuumi Yoshida | |
58 | 84 | Yuumi Yoshida | もし以下のようなエラーが表示される場合は、3. 手順でSSL証明書を追加してから再度アップデートを実行して下さい。 |
59 | 1 | Yuumi Yoshida | |
60 | 69 | Yuumi Yoshida | <pre> |
61 | 84 | Yuumi Yoshida | ERROR: While executing gem ... (Gem::RemoteFetcher::FetchError) |
62 | SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certif |
||
63 | icate verify failed (https://api.rubygems.org/specs.4.8.gz) |
||
64 | 75 | Yuumi Yoshida | </pre> |
65 | 69 | Yuumi Yoshida | |
66 | Ruby on Rails の確認、以下のように表示されればOKです。 |
||
67 | <pre> |
||
68 | C:\> rails -v |
||
69 | 84 | Yuumi Yoshida | Rails 4.2.0 |
70 | 1 | Yuumi Yoshida | </pre> |
71 | 69 | Yuumi Yoshida | |
72 | 82 | Yuumi Yoshida | *DL is deprecated, please use Fiddle* という警告が表示されますが、問題ありません。 |
73 | 2 | Yuumi Yoshida | |
74 | 84 | Yuumi Yoshida | h3. 3. SSL証明書を追加 |
75 | 81 | Yuumi Yoshida | |
76 | 86 | Yuumi Yoshida | https://gist.github.com/luislavena/f064211759ee0f806c88#step-1-obtain-the-new-trust-certificate ページを表示し、 |
77 | *AddTrustExternalCARoot-2048.pem* リンクを右クリックし「対象をファイルに保存」で |
||
78 | 85 | Yuumi Yoshida | *C:\RailsInstaller\Ruby2.1.0\lib\ruby\2.1.0\rubygems\ssl_certs* フォルダーに AddTrustExternalCARoot-2048.pem ファイルを保存します。 |
79 | 84 | Yuumi Yoshida | |
80 | |||
81 | h3. 4. 関連ライブラリーのインストール |
||
82 | |||
83 | 72 | Yuumi Yoshida | Ruby on Railsでは初めてプロジェクトを作った際に関連するライブラリーがインストールされるので、一度ダミーのプロジェクトを作成します。 |
84 | |||
85 | 78 | Yuumi Yoshida | <pre> |
86 | C:\> cd C:\temp |
||
87 | C:\temp> rails new dummy |
||
88 | 72 | Yuumi Yoshida | create |
89 | 69 | Yuumi Yoshida | create README.rdoc |
90 | create Rakefile |
||
91 | |||
92 | 1 | Yuumi Yoshida | ... |
93 | |||
94 | 78 | Yuumi Yoshida | Your bundle is complete! |
95 | Use `bundle show [gemname]` to see where a bundled gem is installed. |
||
96 | </pre> |
||
97 | 1 | Yuumi Yoshida | |
98 | 69 | Yuumi Yoshida | |
99 | 1 | Yuumi Yoshida | 削除出来たら、ダミーのプロジェクトは削除してしまってかまいません。 |