Lennie
Lennie

Reputation: 10845

Where can I find a collection Of Ruby Gems?

Where can I find a collection of free available Ruby gems? Why reinvent the wheel if a gem is already available that you can re-use?

Upvotes: 0

Views: 173

Answers (4)

Milan Novota
Milan Novota

Reputation: 15596

There are really only two important sources for gems available:

  1. RubyForge
  2. GitHub

Upvotes: 2

rjh
rjh

Reputation: 50284

Here's a list of RubyGems at GitHub:

http://gems.github.com/list.html

Instructions on how to download are at the top of the page. It's no CPAN though...

Upvotes: 1

kris
kris

Reputation: 23592

Wikipedia says:

gem list -r -d

http://en.wikipedia.org/wiki/RubyGems

Upvotes: 0

Pesto
Pesto

Reputation: 23880

RubyForge is the place to go.

Upvotes: 3

Related Questions