RubyGems镜像汇总
RubyGems 一直以来在国内都非常难访问到,在本地你或许可以翻墙,当你要发布上线的时候,你就很难搞了!
之前是有淘宝镜像,链接地址为:https://ruby.taobao.org/,不过现在已经不维护了。
RubyGems 镜像的管理工作以后将交由 Ruby China 负责 https://gems.ruby-china.com/。
现在华为云加入RubyGems镜像的加速工作了。
1、查看当前源
$ gem sources -l
*** CURRENT SOURCES ***
https://rubygems.org/
2、移除当前源
$ gem sources --remove https://rubygems.org/
3、添加华为镜像站的RubyGems镜像源(以匿名用户为例)
$ gem sources --add https://anonymous:devcloud@mirrors.huaweicloud.com/repository/rubygems/
4、查看镜像源是否修改成功
$ gem sources -l
*** CURRENT SOURCES ***
https://anonymous:devcloud@mirrors.huaweicloud.com/repository/rubygems/
若使用Gemfile和Bundle(例如:Rails项目)
可以用bundle的gem源代码镜像命令。
$ bundle config mirror.https://rubygems.org https://anonymous:devcloud@mirrors.huaweicloud.com/repository/rubygems/
这样可以无需修改Gemfile的source。
source ´https://rubygems.org/´
gem ´rails´, ´4.1.0´
...
参考:https://bbs.huaweicloud.com/forum/thread-5884-1-1.html
- 点赞
- 收藏
- 关注作者
评论(0)