in reply to Re: Moose Role to include Use statements
in thread Moose Role to include Use statements

Ahhh true, we're being strict about what is allowed in this module.

One included module with imported method didn't work when in the Role file anyway so had to abort that approach, and you're right, only things related to that Role should be in there anyway.

Was just looking for the most-Moose way of doing it.

  • Comment on Re^2: Moose Role to include Use statements

Replies are listed 'Best First'.
Re^3: Moose Role to include Use statements
by stvn (Monsignor) on Feb 21, 2011 at 18:04 UTC
    One included module with imported method didn't work when in the Role file anyway so had to abort that approach

    This is because Moose recognizes the difference between an imported function and a method. That and roles don't have an import method (and never should IMO anyway).

    -stvn