Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: Importing Dependency Version

by Khen1950fx (Canon)
on Oct 11, 2013 at 03:17 UTC ( [id://1057806]=note: print w/replies, xml ) Need Help??


in reply to Importing Dependency Version

FWIW, the parameter for lib must be a directory and not a file. Here's what I tried with Exporter-5.67:
#!/usr/bin/perl -l BEGIN { unshift @INC, '/root/mylib/lib'; } use strict; use warnings; require Exporter; use Email::Date::Format; use lib '/root/mylib/lib'; print "Email::Date::Format: ", $Email::Date::Format::VERSION; print "Exporter: ", $Exporter::VERSION;

Replies are listed 'Best First'.
Re^2: Importing Dependency Version
by perldc (Initiate) on Oct 14, 2013 at 14:16 UTC
    That script seems to work and use the Exporter in my projects lib directory. I'm not sure why but I was using:
    use strict; use warnings; use lib qw{./lib}; print "Email::Date::Format: ", $Email::Date::Format::VERSION; print "Exporter: ", $Exporter::VERSION;
    which did not work. Simply moving the use warnings; to the end does work.
    use strict; use lib qw{./lib}; use warnings; print "Email::Date::Format: ", $Email::Date::Format::VERSION; print "Exporter: ", $Exporter::VERSION;
    Apparently there is a special order to for "use" which I did not know about.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (6)
As of 2024-04-20 00:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found