Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Moose::Role not getting params passed via ->new()

by italdesign (Novice)
on Sep 18, 2013 at 22:49 UTC ( [id://1054745]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use Module::Load;
    
    my $class = 'DTF::Wget';
    load $class;
    my $adapter = $class->new( 'input_line' => $input_line, 'dl_base_dir' 
    +=> $dl_base_dir, 'report_file' => $report_file );
    
  2. or download this
    package DTF::Wget;
    use strict;
    ...
    use Moose;
    
    with 'DTF::Transfer';
    
  3. or download this
    package DTF::Transfer;
    use strict;
    ...
    
        die scalar(keys %$self);
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://1054745]
Approved by Old_Gray_Bear
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (5)
As of 2024-03-28 15:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found