perl::critic::profileprototype(3) [centos man page]
Perl::Critic::ProfilePrototype(3) User Contributed Perl Documentation Perl::Critic::ProfilePrototype(3)NAME
Perl::Critic::ProfilePrototype - Generate an initial Perl::Critic profile.
DESCRIPTION
This is a helper class that generates a prototype of a Perl::Critic profile (e.g. a .perlcriticrc file. There are no user-serviceable
parts here.
INTERFACE SUPPORT
This is considered to be a non-public class. Its interface is subject to change without notice.
CONSTRUCTOR
"new( -policies => @POLICY_OBJECTS )"
Returns a reference to a new "Perl::Critic::ProfilePrototype" object.
METHODS
to_string()
Returns a string representation of this "ProfilePrototype". See "OVERLOADS" for more information.
OVERLOADS
When a Perl::Critic::ProfilePrototype is evaluated in string context, it produces a multi-line summary of the policy name, default themes,
and default severity for each Perl::Critic::Policy object that was given to the constructor of this "ProfilePrototype". If the Policy
supports an additional parameters, they will also be listed (but commented-out). The format is suitable for use as a .perlcriticrc file.
AUTHOR
Jeffrey Ryan Thalhammer <jeff@imaginative-software.com>
COPYRIGHT
Copyright (c) 2005-2011 Imaginative Software Systems. All rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of this license
can be found in the LICENSE file included with this module.
perl v5.16.3 2014-06-09 Perl::Critic::ProfilePrototype(3)
Check Out this Related Man Page
Perl::Critic::PolicyListing(3pm) User Contributed Perl Documentation Perl::Critic::PolicyListing(3pm)NAME
Perl::Critic::PolicyListing - Display minimal information about Policies.
DESCRIPTION
This is a helper class that formats a set of Policy objects for pretty-printing. There are no user-serviceable parts here.
INTERFACE SUPPORT
This is considered to be a non-public class. Its interface is subject to change without notice.
CONSTRUCTOR
"new( -policies => @POLICY_OBJECTS )"
Returns a reference to a new "Perl::Critic::PolicyListing" object.
METHODS
to_string()
Returns a string representation of this "PolicyListing". See "OVERLOADS" for more information.
OVERLOADS
When a Perl::Critic::PolicyListing is evaluated in string context, it produces a one-line summary of the default severity, policy name, and
default themes for each Perl::Critic::Policy object that was given to the constructor of this "PolicyListing".
AUTHOR
Jeffrey Ryan Thalhammer <jeff@imaginative-software.com>
COPYRIGHT
Copyright (c) 2005-2011 Imaginative Software Systems. All rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of this license
can be found in the LICENSE file included with this module.
perl v5.14.2 2012-06-07 Perl::Critic::PolicyListing(3pm)
i am very new to Perl. i am using Ubuntu. i have a string call $string that contains following words "new line". i also have a data file as follows.
djfibjbet
etitrbjijbtr rrge rgjierjegjeri
jerijg
kijij jijij
i want to write my new line to my data file as follows.
djfibjbet... (3 Replies)
I know that when using 'while (<FILE>) {}', Perl reads only one line of the file at one time, and store it in '$_'.
Can I change some parameters so that 'while (<>) {}' can read more than one lines, like 2 or 5 lines at one time?
Thanks for the help! (1 Reply)
Hi,
Time for me to take a formal class/course on Perl. I was wondering if someone here can recommend an on-line class. My institution will cover the expenses, and therefore, I am not worry about the cost. I am lookin for a beginner course with possibilities to take intermediate and advance... (2 Replies)