问题
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
来源:https://stackoverflow.com/questions/3111181/ruby-gem-installation-problem-on-mac-which-is-behind-firewall