当我使用rails new
创建新项目时,Gemfile中的源默认为https://rubygems.org
。
但是我需要使用其他来源,如何将该源设置为默认值,以便我以后不需要手动更改Gemfile
。
@Update:
我想更改来源,因为默认来源在我的区域被阻止(真可惜......),执行rails new
时它会卡在bundle install
,超时后它会失败并提示
如果我不能使用默认来源,但我有其他可用来源,我该怎么做才能完成项目的创建?
这是我失败后所做的事情:
bundle install
这样做了吗?或者我需要额外的步骤?
答案 0 :(得分:0)
使用bundler
和Gemfile
的项目的可能解决方案是:
gem install bundler
bundle config mirror.https://rubygems.org https://gems.ruby-china.com
提示:
Gemfile
,并根据您所在的地区提供最佳资源。source https://gems.ruby-china.com
bundle install
。