2

我正在尝试创建新的 Rails 应用程序:

rails new NewRailsApp

并不断收到错误:

  create
  create  README.rdoc
  create  Rakefile
  ...
  create  vendor/plugins/.gitkeep
     run  bundle install
Fetching gem metadata from https://rubygems.org/.
Error Bundler::HTTPError during request to dependency API
Fetching full source index from https://rubygems.org/
Could not reach https://rubygems.org/

是我这边的错误还是由 Rubygems Dependecy API 关闭引起的?(据此已经停机四天了)

我该如何解决这个问题?

4

1 回答 1

4

暂时使用

source "http://bundler-api.herokuapp.com"

在你的Gemfile.

来源:http ://hone.herokuapp.com/bundler%20heroku/2012/10/22/rubygems-and-the-dependency-api.html

于 2012-10-22T18:01:37.730 回答