How to remove a remote source from gem remote sources

Viewed 27687

I have added gemcutter.org to my Rubygems sources, and now I do not know how to remove it.

$ gem sources
*** CURRENT SOURCES ***

http://gemcutter.org
http://gems.rubyforge.org/
3 Answers

In general you can find the syntax with

gem help *command*

So this shows the options you needed:

gem help sources
Related