改めてRails3.2

http://www.oiax.jp/rails/zakkan/rails_3_1_installation_on_windows.html

これを見てインストール。
手順通りやると、最後にhttp://localhost:3000/usersに接続すると、



TypeError: オブジェクトでサポートされていないプロパティまたはメソッドです。

というエラー。
そこで下記を参考に、coffee-script-sourceの部分をいじった。

http://hitsujizaru.com/ruby/post-114.html

ちなみに、coffee-script-source(1.8.0)自体が入ってなかったので、

gem install --remote coffee-script-source --version="1.8.0"

でインストール。


最初のURLでは、DBはsqLite3だったので、Mysqlでしようと思い、

rails new hoge -d mysql

とすると、

=========================================
You've installed the binary version of mysql2.
It was built using MySQL Connector/C version 6.1.5.
It's recommended to use the exact same version to avoid potential issues.

...
=========================================

と言ったメッセージが出たので、

http://www.rubylife.jp/rails/model/index3.html
を参考に、表示されたURLに接続してソースをダウンロードし、後は書かれていた
通りにしたら、メッセージは表示されずアプリケーションが出来た。