创建新的Rails项目时出错

时间:2011-09-09 22:03:56

标签: ruby-on-rails ruby-on-rails-3 installer

我安装了Rails安装程序。现在我正在尝试创建一个新的Rails项目。当我做的时候

C:\Sites> rails new demoproj

我收到此错误:

Fetching source index for http://rubygems.org/
Could not reach rubygems repository http://rubygems.org/
Could not find gem 'turn (>= 0)' in any of the gem sources listed in your Gemfile.

2 个答案:

答案 0 :(得分:0)

一般来说,这个问题意味着你需要做bundle install。不知道如果它是一个特定于Windows的问题,在创建项目后应该有一个自动包。

答案 1 :(得分:0)

我假设你在代理上安装rails。这可能就是你要找的东西:

  

将给定选项添加到gemrc文件

gem: -p http//#{proxy-server}:#{port}

Creating a new rails 3 project over a proxy in windows