Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm connected to the internet using a proxy script in my office. As a result my command prompt(Win XP) doesn't connect and I can access net only using the browser.

Is there some I can install some ruby gems that I need manually - without using

gem install 'abc'

Or is there a way I can get my command prompt to connect to the internet. Although my IE settings do use the script, I still cant get the CMD to connect.

Thanks

share|improve this question

2 Answers

I had the same problem when working on a confined environment. A nice workaround is to download the gem that you are interested in a usb stick and then install it manually.

This is the website where you can find all available ruby gems. Ruby gems download. Find the one you are interested and download it.

Then move the gem in a directory of your choice and cd into that from the command prompt. I am using C:/ruby193/bin/pony-1.4.gem

Let's say that the gem we are interested in is the pony gem (smtp email).

Just type gem install pony-1.4.gem

and you should get it installed manually unless you have a restricted acc with not adequate administrative privileges.

share|improve this answer
2  
Excellent. +1ed. – ZenMaster Nov 15 '12 at 6:59

If you have the proxy URL, you can use the gem option http-proxy.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.