Sounds like a useful module. I thought from the name that it might be some kind of "gcc -M" replacement. I'm glad it's not!

Comments:

  - You commented out the "use 5.006" and then proceeded to   
    use "our".  Naughty.

  - You could get the flexibility you like in Python by
    overloading != in your signature classes, I think.
    I don't know if it would be worth it, but it might
    make you happier with Perl.

  - You have "1;" at the end of every package.  This is not
    required.  What is required is a "1;" at the end of
    every file, which you also have.

  - Why repeat the class name in the "adddependency" method?
    I think just add() might be clearer.

  - The use of mixed case in parameter names runs against
    the grain of most Perl modules ("Method" and "Files").

  - This module might be more useful if it provided 
    save() and load() methods to save dependencies to
    a file and load them again.  That way it could be
    used by compilers and other non-long-running programs
    to track up-to-dateness.  Storable should offer an
    easy solution if you like the idea.

That's all for now!

-sam


In reply to Re: File::Dependencies - a new module looking for a good name (and more discussion) by samtregar
in thread File::Dependencies - a new module looking for a good name (and more discussion) by Corion

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.