0

railinstaller を使用して Windows にレールをインストールしました。

Rails を使用したアジャイル Web 開発のコピーを学習ガイドとして使用します。そのため、本で使用されているバージョンに近い 3.2.14 を使用したいと考えています。

ただし、そのバージョンを設定した後。

C:\work>rails _3.2.14_ --version
Rails 3.2.14

新しいレール環境を作成します

C:\work>rails new demo
...
Your bundle is complete!
Use `bundle show [gemname]` to see where a bundled gem is installed.

C:\work>cd demo

C:\work\demo>ls -p
Gemfile       README.rdoc  app/  config/    db/   log/     test/  vendor/
Gemfile.lock  Rakefile     bin/  config.ru  lib/  public/  tmp/

Rails サーバーを起動すると、Rails のバージョン 4.0.0rc が実行されます。ここで何か間違ったことをしていますか?

C:\work>cd demo

C:\work\demo>rails server
=> Booting WEBrick
=> Rails 4.0.0.rc2 application starting in development on http://0.0.0.0:3000
=> Run `rails server -h` for more startup options
=> Ctrl-C to shutdown server
[2013-08-15 10:08:39] INFO  WEBrick 1.3.1
[2013-08-15 10:08:39] INFO  ruby 1.9.3 (2013-05-15) [i386-mingw32]
[2013-08-15 10:08:39] INFO  WEBrick::HTTPServer#start: pid=1652 port=3000
4

1 に答える 1

1

実行rails _3.2.14_ new demoして Rails 3.2.14 プロジェクトを作成します。

于 2013-08-15T00:27:57.793 に答える