views:

91

answers:

5

Is there a good class repository like PEAR for PHP for other languages such as Ruby or C#? If so what are they?

Are they any good?

+3  A: 
  • For Ruby there is rubygems - the de-facto standard repository.
  • For C# (.NET) - Codeplex is your best shot I think.
Emil Ivanov
+2  A: 

Ruby has its own package manager, rubygems. In addition, Ruby libraries can usually be found on either RubyForge or GitHub.

Pesto
Don't forget the very venerable RAA (http://raa.ruby-lang.org/)
Mike Woodhouse
+3  A: 

Perl has the CPAN (possibly the best repository of reusable modules in the world).

David Dorward
A: 

There isn't such a thing in C# universe.

Maybe it's because in C# you can compile your binaries, which enhances interoperability.

If you need to find projects for csharp search for example google code, sourceforge, github or codeplex.

I don't know anything about ruby.

JJoos
+1  A: 

Python has the PyPI, Haskell has the Hackage.

PiotrLegnica