Ruby gem installation problem on Mac which is behi

2019-04-06 22:21发布

问题:

Please provide me solution for the problem of, 1) How to install ruby gems on a Mac (OS X 10.5.1) which is behind a corporate firewall.

Regards, Sun

回答1:

Assuming that you use an HTTP proxy, there is a --http-proxy option for the gem app.

gem install --http-proxy http://corporate-proxy:1234 <gem_name>


回答2:

On my Mac which has the default ruby installed on it. I use the script below and it worked:

sudo gem install <gem_name> -p http://corporate-proxy:1234


标签: ruby proxy gem