Acme-CreatingCPANModules

 view release on metacpan or  search on metacpan

slides/slide4b.html  view on Meta::CPAN

    window.close();
}

function handleKey(e) {
    var key;
    if (e == null) {
        // IE
        key = event.keyCode
    } 
    else {
        // Mozilla
        if (e.altKey || e.ctrlKey) {
            return true
        }
        key = e.which
    }
    switch(key) {
        case 8: prevSlide(); break
        case 13: nextSlide(); break
        case 32: nextSlide(); break
        case 81: closeSlide(); break
        case 105: indexSlide(); break
        case 110: nextSlide(); break
        case 112: prevSlide(); break
        case 115: startSlide(); break
        default: //xxx(e.which)
    }
}

document.onkeypress = handleKey
// END controls.js

</script>
</head>
<body>
<div id="topbar">
<table width='100%'>
<tr>
<td width="13%">CPAN</td>
<td align="center" width="73%">
    <a accesskey="s" href="start.html">Creating CPAN modules</a>
</td>
<td align="right" width="13%">
    #4
</td>
</tr>
</table>
</div>
<!-- END top -->

<div id="content">
<div class="top_spacer"></div>

<h1>With Module::Starter</h1>
<pre class="formatter_pre">$ module-starter 
Usage:
    module-starter [options]

    Options:

        --module=module  Module name &#40;required, repeatable&#41;
        --distro=name    Distribution name &#40;optional&#41;
        --dir=dirname    Directory name to create new module in &#40;optional&#41;

        --builder=module Build with &#39;ExtUtils::MakeMaker&#39; or &#39;Module::Build&#39;
        --eumm           Same as --build=ExtUtils::MakeMaker
        --mb             Same as --build=Module::Build

        --author=name    Author&#39;s name &#40;required&#41;
        --email=email    Author&#39;s email &#40;required&#41;
        --license=type   License under which the module will be distributed
                         &#40;default is the same license as perl&#41;

        --verbose        Print progress messages while working
        --force          Delete pre-existing files if needed

        --help           Show this message

    Example:

        module-starter --module=Foo::Bar,Foo::Bat \
            --author=&#34;Andy Lester&#34; --email=andy@petdance.com
</pre>

</div>
<!-- BEGIN bottom -->
<div id="bottombar">
<table width="100%">
<tr>
<td align="left" valign="middle">
    <div style="display:none">
    <a accesskey='p' href="slide4a.html">&lt; &lt; Previous</a> |
    <a accesskey='i' href="index.html">Index</a> |
    <a accesskey='n' href="slide5.html">Next &gt;&gt;</a>
    </div>
</td>
<td align="right" valign="middle">
    Copyright &copy; 2005 Jos&eacute; Castro
</td>
</tr>
</table>
</div> 
<div id="logo"></div>
<div class="spacer">
<a name="end"></a>
</div>
</body>
</html>


<!-- END slide -->



( run in 0.936 second using v1.01-cache-2.11-cpan-39bf76dae61 )