[Module-build-checkins] Module-Build/lib/Module Build.pm,1.167,1.168
Status: Beta
Brought to you by:
kwilliams
From: Ken W. <kwi...@us...> - 2004-11-12 02:34:39
|
Update of /cvsroot/module-build/Module-Build/lib/Module In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27208/lib/Module Modified Files: Build.pm Log Message: Integrate from bugfix branch Index: Build.pm =================================================================== RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build.pm,v retrieving revision 1.167 retrieving revision 1.168 diff -C2 -d -r1.167 -r1.168 *** Build.pm 9 Nov 2004 23:47:06 -0000 1.167 --- Build.pm 12 Nov 2004 02:34:31 -0000 1.168 *************** *** 768,771 **** --- 768,782 ---- code that creates them. + =item new_from_context(%args) + + When called from a directory containing a F<Build.PL> script and a + F<META.yml> file (in other words, the base directory of a + distribution), this method will run the F<Build.PL> and return the + resulting C<Module::Build> object to the caller. Any key-value + arguments given to C<new_from_context()> are essentially like + command-line arguments given to the F<Build.PL> script, so for example + you could pass C<< verbose => 1 >> to this method to turn on + verbosity. + =item resume() |