Alien-Selenium
view release on metacpan or search on metacpan
inc/My/Module/Build.pm view on Meta::CPAN
Config_Option(key1=value1, ...) >>. Right now the
following keys are defined:
=over
=item I<type>
The datatype of this option, either as a word (e.g. "boolean", "integer" or
"string") or as a L<GetOpt::Long> qualifier (e.g. "!", "=s" or "=i").
The default is to guess from the name of the option: "install_foo" and
"enable_bar" are supposed to be booleans, "baz_port" an integer, and
everything else a string.
=back
The name of the method is the internal key for the corresponding
option (e.g. for L</option_value>). It is also the name of the
corresponding command-line switch, except that all underscores are
converted to dashes.
inc/My/Module/Build.pm view on Meta::CPAN
use File::Basename qw(dirname);
use File::Spec::Unix ();
use File::Find;
=begin internals
=head2 Global variables
=head3 $running_under_emacs_debugger
Set by L</_massage_ARGV> if (you guessed it) we are currently running
under the Emacs debugger.
=cut
our $running_under_emacs_debugger;
=head2 Constants
=head3 is_win32
inc/Pod/Snippets.pm view on Meta::CPAN
$self->{warnings} = $parser->pod_snippets_warnings;
$self->{errors} = $parser->pod_snippets_errors;
return $self;
}
=head2 parse ($string, -opt1 => $val1, ...)
Same as L</load>, but works from a Perl string instead of a file
descriptor. The named options are the same as in I<load()>, but
consider using C<< -filename >> as I<parse()> is in no position to
guess it.
=cut
sub parse {
my ($class, $string, @args) = @_;
return $class->load(Pod::Snippets::LineFeeder->new($string), @args);
package Pod::Snippets::LineFeeder;
sub new {
( run in 0.309 second using v1.01-cache-2.11-cpan-702932259ff )