http://qs321.pair.com?node_id=685824


in reply to Re^2: The App:: namespace? Sharing a webapp on CPAN
in thread The App:: namespace? Sharing a webapp on CPAN

If the webapp wasn't on CPAN, you could do the same thing. Or, you could just bundle the modules you need and, that way, you're guaranteeing the proper versions. Just because you require v1.34+ doesn't mean that 1.35 didn't break something you need.

As for everything else you're talking about, these things don't require CPAN. They are installation process issues. Don't worry about "diversification of Perl" issues. Forcing everyone to come to CPAN just to get your app means you're limiting your userbase to Perl users. I shouldn't be forced to care about what language you've implemented in. I only know what language Trac is implemented in because I had to patch it once. I don't know what language Jira, gVim, Firefox, or iTerm are written in ... and I don't care.


My criteria for good software:
  1. Does it work?
  2. Can someone else come in, make a change, and be reasonably certain no bugs were introduced?

Replies are listed 'Best First'.
Re^4: The App:: namespace? Sharing a webapp on CPAN
by skazat (Chaplain) on May 11, 2008 at 02:02 UTC

    If the webapp wasn't on CPAN, you could do the same thing. Or, you could just bundle the modules you need and, that way, you're guaranteeing the proper versions. Just because you require v1.34+ doesn't mean that 1.35 didn't break something you need.
    This already happens with the webapp, as it has ver 1 of the CPAN module bundled. Sometimes, 1.1 ver of the CPAN module gets installed site wide and things blow up. I'm hoping this won't happen - or if it does, I'll know about it, at the same time as everyone else.

    Forcing everyone to come to CPAN just to get your app means you're limiting your userbase to Perl users.

    I'm not forcing anyone, it just another alternative, *specifically* for perl geeks, with a lot of benefits. Non-Perl geeks don't know how to use CPAN and that's the current userbase. I'd like to grow the userbase.

    If you don't care, why are you expressing an opinion?

    -justin simoni
    skazat me

      I don't care what language the apps I use are written in. I do care about how applications are distributed and installed. Distribution from CPAN is a very non-ideal way. There are much better ways to distribute and install. Hence, why I'm expressing an opinion.

      My criteria for good software:
      1. Does it work?
      2. Can someone else come in, make a change, and be reasonably certain no bugs were introduced?