Are there any guidelines on how to name roles?

Nope, I tend to do a lot of "WithSomething" and "HasSomething", but only when it makes sense. I am really not a fan of the Java/C# interface practice of prepending an "I", so I would not suggest the same but with an "R" unless you like that practice.

I think the "does" comes from the Perl6 keyword. But in Moose the keyword is "with", so that confuses things a bit.

The reason we have "with" is that since that is really just a function, it would conflict with the "does" that is found in Moose::Object which is used to tell if something "does" a role $object->does(My::Role). I would have preferred to have used "does" and be more Perl 6 compat, but I had to work around the Perl 5 limitations.

FWIW, the "with" keyword comes from Scala.

So, any good ideas on how to think or phrase the description of names for classes and roles?

Not yet really, although I haven't given it a whole lot of thought. I am sort of waiting to see, as the group of people using roles grows, what patterns (actual patterns, not GoF patterns) begin to develop for usage and naming. At this point myself and nothingmuch have probably been using roles the longest (at least in Moose) and we each have our own approaches (see Forest and Bread::Board for examples of my usage and KiokuDB and Class::Workflow for examples by nothingmuch).

I guess to not answer your question more clearly,.. there are no rules :)

-stvn

In reply to Re^7: Sanity Check: Roles vs. Traits by stvn
in thread Sanity Check: Roles vs. Traits by tima

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.