Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

module::install::with(3pm) [debian man page]

Module::Install::With(3pm)				User Contributed Perl Documentation				Module::Install::With(3pm)

NAME
Module::Install::With - find environnement for Module::Install interactive The "interactive" function tests for an install that has a user present (or at least, one in which it is reasonable for us to present prompts and other similar types of things). Returns true if in an interactive environment, or false otherwise. automated_testing Are we currently running in an automated testing environment, such as CPAN Testers. This is primarily a cleaner and more human-readable equivalent of checking $ENV{AUTOMATED_TESTING} yourself, but may be improved in line with best practices at a later date. release_testing Are we currently running in an release testing environment. That is, are we in the process of running in a potential highly-intensive and high dependency bloat testing process prior to packaging a module for release. This is primarily a cleaner and more human-readable equivalent of checking $ENV{RELEASE_TESTING} yourself, but may be improved in line with best practices at a later date. win32 The "win32" function tests if the Makefile.PL is currently running in a native Microsoft Windows Perl, such as ActivePerl or Strawberry Perl. This is primarily a cleaner and more human-readable equivalent of checking "$^O eq 'MSWin32'" yourself, but may be improved in line with best practices at a later date. winlike The "winlike" function tests if the Makefile.PL is currently running in a Microsoft Windows Perl, under either cygwin or a native Win32 Perl. This is primarily a cleaner and more human-readable equivalent of checking "$^O eq 'MSWin32' or $^O eq 'cygwin'"yourself, but may be improved in line with best practices at a later date. SEE ALSO
Module::Install AUTHORS
Adam Kennedy <adamk@cpan.org> COPYRIGHT
Copyright 2007 - 2012 Adam Kennedy. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file included with this module. perl v5.14.2 2012-03-19 Module::Install::With(3pm)

Check Out this Related Man Page

Module::Install::DOAPChangeSets(3pm)			User Contributed Perl Documentation		      Module::Install::DOAPChangeSets(3pm)

NAME
Module::Install::DOAPChangeSets - write your distribution change log in RDF DESCRIPTION
This package allows you to write your Changes file in Turtle or RDF/XML and autogenerate a human-readable text file. To do this, create an RDF file called "meta/changes.ttl" (or something like that) and describe your distribution's changes in RDF using the Dublin Core, DOAP, and DOAP Change Sets vocabularies. Then in your Makefile.PL, include: write_doap_changes "meta/changes.ttl", "Changes", "turtle"; This line will read your data from the file named as the first argument, parse it using either Turtle or RDFXML parsers (the third argument), and output a human-readable changelog to the file named as the second argument. The defaults are "meta/changes.ttl", "Changes", "turtle", so if you name the files like that, then you can exclude all the arguments and just include this in your Makefile.PL: write_doap_changes; There's also a line you can use to output a Changes.xml file: write_doap_changes_xml "meta/changes.ttl", "Changes.xml", "turtle"; Integration with Module::Install::RDF Module::Install::RDF reads all the RDF it can find in 'meta'. If you invoke Module::Install::RDF before invoking Module::Install::DOAPChangeSets, then this module will use Module::Install::RDF's copy of the data. WHY
? Why not? BUGS
Please report any bugs to <http://rt.cpan.org/>. SEE ALSO
Module::Install, Module::Install::DOAPChangeSets::Format , Module::Install::RDF. <http://www.perlrdf.org/>. AUTHOR
Toby Inkster <tobyink@cpan.org>. COPYRIGHT AND LICENSE
Copyright (C) 2010-2011 by Toby Inkster This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-01-18 Module::Install::DOAPChangeSets(3pm)
Man Page