Re: MooseY namespace

2013-06-10 Thread Caleb Cushing
On Sun, Jun 9, 2013 at 10:31 PM, Darren Duncan dar...@darrenduncan.net wrote: I second Reverend Chip's comment. Too much what its implemented with rather than what it does among module names. -- Darren Duncan On 2013.06.09 8:26 PM, Reverend Chip wrote: Might it be better simply to name the

Re: MooseY namespace

2013-06-10 Thread Karen Etheridge
On Mon, Jun 10, 2013 at 01:24:31PM -0500, Caleb Cushing wrote: Basically this is just a suggestion for things that don't make sense in a context outside of Moose, of course like MooseX people will probably abuse it. At least it'd be giving them a place to go, instead of just saying, you have

Re: Accessing object constructors from the 'main'

2013-06-10 Thread Karen Etheridge
On Sat, Jun 08, 2013 at 03:26:37AM -0400, Faelin McCaley Landy wrote: The Moose::Manual is very well written, but is definitely lacking in explanation of a very key step in product development: how on Earth do you actually use your objects in a script?! Like any other module, you need to load

Re: Accessing object constructors from the 'main'

2013-06-10 Thread Lars Balker
Foo.pm: package Foo; use Moose; main.pl: use Foo; Foo-new; See perldoc FindBin and perldoc lib to help use find Foo.pm On Sat, Jun 8, 2013 at 9:26 AM, Faelin McCaley Landy faelin.la...@gmail.com wrote: The Moose::Manual is very well written, but is definitely lacking in explanation of

Re: Accessing object constructors from the 'main'

2013-06-10 Thread Chris Weyl
On Sat, 8 Jun 2013, Faelin McCaley Landy wrote: *use Moose; extends 'Obj';* but this seems like it can't be the Best Practices way to go about is... Is there a more proper way to access an objects constructor from a different document? If you've defined Obj in Obj.pm and that file is in

Re: Accessing object constructors from the 'main'

2013-06-10 Thread Dave Rolsky
On Sat, 8 Jun 2013, Faelin McCaley Landy wrote: The Moose::Manual is very well written, but is definitely lacking in explanation of a very key step in product development: how on Earth do you actually use your objects in a script?! Specifically, my problem is that I want to have a main.plĀ from

Re: Accessing object constructors from the 'main'

2013-06-10 Thread Darren Duncan
On 2013.06.10 2:41 PM, Dave Rolsky wrote: On Sat, 8 Jun 2013, Faelin McCaley Landy wrote: The Moose::Manual is very well written, but is definitely lacking in explanation of a very key step in product development: how on Earth do you actually use your objects in a script?! Specifically, my