本文介绍了为 ruby​​gems 设置代理的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有办法在 rails 项目中的某处指定代理,这样我就不必每次都手动输入它,像这样:gem install --HTTP-PROXY http://web-proxy:8088 bundle

Is there a way to specify somewhere the proxy in rails projects so that I don't have to manually type it each time, like this:gem install --HTTP-PROXY http://web-proxy:8088 bundle

我需要能够输入:gem install bundle 并且默认情况下应该理解"代理.如何才能做到这一点?我使用的是 Windows 7.

I need to be able to type: gem install bundle and the proxy should be 'understood' by default. How can this be done? I am using Windows 7.

推荐答案

gem使用 HTTP_PROXY 环境变量(如果已设置).只需在 Windows 7 中设置,它就会被默认使用.

gem will use the HTTP_PROXY environment variable if set. Just set that in Windows 7 and it will be used by default.

这篇关于为 ruby​​gems 设置代理的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 07:25