PEAR alternatives in other languages
Is there a good class repository like PEAR for PHP for other languages like Ruby or C #? If so, what are they?
How good are they?
+2
Evernoob
source
to share
5 answers
- There is rubygems for Ruby - the de facto standard repository.
- For C # (.NET) - Codeplex is your best shot I think.
+3
Emil Ivanov
source
to share
Perl has a CPAN (arguably the best repository of reusable modules in the world).
+3
Quentin
source
to share
Ruby has its own package manager, rubygems . Additionally, Ruby libraries can usually be found either on RubyForge or GitHub .
+2
Pesto
source
to share
Python has PyPI , Haskell has Hackage .
+1
Cat plus plus
source
to share
This does not exist in a C # universe.
Maybe because in C # you can compile your binaries, which improves interoperability.
If you need to find csharp search projects like google code, sourceforge, github or codeplex.
I don't know anything about ruby.
0
JJoos
source
to share