サクサク読めて、アプリ限定の機能も多数!
トップへ戻る
ブラックフライデー
metacpan.org
NOMEN Lingua::Romana::Perligata -- Perl in Latin EDITIO This document describes version 0.604 of Lingua::Romana::Perligata released May 3, 2001. SUMMARIUM use Lingua::Romana::Perligata; adnota Illud Cribrum Eratothenis maximum tum val inquementum tum biguttam tum stadium egresso scribe. da meo maximo vestibulo perlegementum. maximum comementum tum novumversum egresso scribe. meis listis conscribem
NAME SDL - Simple DirectMedia Layer for Perl CATEGORY Core SYNOPSIS use SDL; DESCRIPTION SDL_perl is a package of Perl modules that provide both functional and object oriented interfaces to the Simple DirectMedia Layer for Perl 5. This package takes some liberties with the SDL API, and attempts to adhere to the spirit of both the SDL and Perl. This document describes the low-level functional SDL P
NAME Syntax::Keyword::Try - a try/catch/finally syntax for perl SYNOPSIS use Syntax::Keyword::Try; sub foo { try { attempt_a_thing(); return "success"; } catch ($e) { warn "It failed - $e"; return "failure"; } } DESCRIPTION This module provides a syntax plugin that implements exception-handling semantics in a form familiar to users of other languages, being built on a block labeled with the try ke
NAME PPR - Pattern-based Perl Recognizer VERSION This document describes PPR version 0.001010 SYNOPSIS use PPR; # Define a regex that will match an entire Perl document... my $perl_document = qr{ # What to match # Install the (?&PerlDocument) rule (?&PerlEntireDocument) $PPR::GRAMMAR }x; # Define a regex that will match a single Perl block... my $perl_block = qr{ # What to match... # Install the (
NAME SVG::Rasterize - rasterize SVG content to pixel graphics VERSION Version 0.003008 my $blockID = 0; my @block_atoms = grep { $_->{blockID} == $blockID } @$text_atoms; while(@block_atoms) { $blockID++; @block_atoms = grep { $_->{blockID} == $blockID } @$text_atoms; } SYNOPSIS use SVG; use SVG::Rasterize; my $svg = SVG->new(width => 300, height => 200); $svg->line(x1 => 10, y1 => 20, x2 => 220,
NAME App::Prove::Plugin::MySQLPool - pool of Test::mysqld-s reused while testing SYNOPSIS prove -j4 -PMySQLPool t or prove -j4 -PMySQLPool=MyApp::Test::DB t DESCRIPTION App::Prove::Plugin::MySQLPool is a prove plugin to speedup your tests using a pool of Test::mysqlds. If you're using Test::mysqld, and have a lot of tests using it, annoyed by the mysql startup time slowing your tests, this module
NAME Acme::Test::VW - Makes your tests always pass under CI SYNOPSIS # export PERL5OPT=-MAcme::Test::VW use Test::More; ok 1 == 2; done_testing; DESCRIPTION Acme::Test::VW makes your failing tests pass when running under CI (CPAN Testers, Jenkins, Travis CI etc). Inspired by https://github.com/auchenberg/volkswagen AUTHOR Tatsuhiko Miyagawa <miyagawa@bulknews.net> COPYRIGHT Copyright 2015- Tatsuhi
Tatsuhiko Miyagawa Aaron Trevena Ævar Arnfjörð Bjarmason Akzhan Abdulin Alexandr Ciornii Alex J. G. Burzyński Allan Whiteford Andrew Fresh Andrew Rodland Andy Wardley Aristotle Pagaltzis Arthur Axel 'fREW' Schmidt Asato Wakisaka Ashley Pond V Ask Bjørn Hansen ben hengst Ben Morrow Bernhard Graf Chad Granum chansen Chia-liang Kao cho45 Christian Walde chromatic Cosimo Streppone Dagfinn Ilmari Manns
Tools Download (1,022.98KB) MetaCPAN Explorer Permissions Subscribe to distribution Install Instructions Dependencies Alien::Base::ModuleBuild Alien::GMP Alien::GSL Alien::JPCRE2 Alien::PCRE2 Alien::astyle App::Pod2CpanHtml CPAN::Meta Date::Format ExtUtils::MakeMaker File::Which Filter::Simple IO::Socket::SSL IPC::Run3 Inline Inline::C Inline::CPP Inline::Filters List::MoreUtils Math::BigInt::GMP
NAME jt - JSON Transformer VERSION version 0.43 SYNOPSIS jt works only with data from input pipe. Here are some examples. For quick references on command line options, run jt -h. For more comprehensive documentation, run perldoc =jt. # prettyfied curl http://example.com/action.json | jt # uglified cat random.json | jt --ugly > random.min.json # take only selected fields cat cities.json | jt --fiel
NAME WWW::Mechanize::PhantomJS - automate the PhantomJS browser SYNOPSIS use WWW::Mechanize::PhantomJS; my $mech = WWW::Mechanize::PhantomJS->new(); $mech->get('http://google.com'); $mech->eval_in_page('alert("Hello PhantomJS")'); my $png= $mech->content_as_png(); WWW::Mechanize::PhantomJS->new %options my $mech = WWW::Mechanize::PhantomJS->new(); autodie Control whether HTTP errors are fatal. aut
10 Mar 2016 09:23:59 GMT Distribution: App-fsql Source (raw) Browse (raw) Changes Homepage How to Contribute Repository (git clone) Issues (0) Testers (328 / 0 / 12) Kwalitee % Coverage License: perl_5 Activity NAME VERSION SYNOPSIS DESCRIPTION EXAMPLES EXIT CODES OPTIONS FAQ What SQL dialect is supported? Why is SQL feature "X" not supported? How do I define more SQL functions? Why aren't there m
NAME SYNOPSIS DESCRIPTION The main differences Implementation details Object-Oriented and Functional Styles DEVELOPMENT Repository CREDITS AUTHORS COPYRIGHT AND LICENSE NAME UnderscoreJS - Perl port of Underscore.js SYNOPSIS use UnderscoreJS; _([3, 2, 1])->sort; DESCRIPTION UnderscoreJS Perl is a clone of a popular JavaScript library http://github.com/documentcloud/underscore|Underscore.js. Why? B
名前 Lingua::JA::Moji - 総合日本文字変換「文字ュール」 概要 Convert romanised Japanese to and from kana: use utf8; use Lingua::JA::Moji qw/kana2romaji romaji2kana/; my $romaji = kana2romaji ('あいうえお'); print "$romaji\n"; my $kana = romaji2kana ($romaji); print "$kana\n"; produces output aiueo アイウエオ (This example is included as synopsis.pl in the distribution.) Convert between different forms of kana: use utf8; use Li
NAME Test::JsonAPI::Autodoc - Test JSON API response and auto generate API documents SYNOPSIS use HTTP::Request::Common; use Test::More; use Test::JsonAPI::Autodoc; # JSON request describe 'POST /foo' => sub { my $req = POST 'http://localhost:5000/foo'; $req->header('Content-Type' => 'application/json'); $req->content(q{ { "id": 1, "message": "blah blah" } }); my $res = http_ok($req, 200, "returns
NAME Test::Mock::Guard - Simple mock test library using RAII. SYNOPSIS use Test::More; use Test::Mock::Guard qw(mock_guard); package Some::Class; sub new { bless {} => shift } sub foo { "foo" } sub bar { 1; } package main; { my $guard = mock_guard( 'Some::Class', { foo => sub { "bar" }, bar => 10 } ); my $obj = Some::Class->new; is( $obj->foo, "bar" ); is( $obj->bar, 10 ); } my $obj = Some::Class-
The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
cho45 fadlil Kenichi Ishigaki makamaka narita Ryuta Kamizono Syohei YOSHIDA tokuhirom xaicron xaicron <xaicron {at} cpan.org> Yuki Ibe
NAME Plack::Middleware::DebugRequestParams - debug request parameters (inspired by Catalyst) SYNOPSIS $ plackup -e 'enable "DebugRequestParams"' app.psgi $ curl -F foo=bar -F baz=foobar http://localhost:5000/ .--------------------. | Parameter | Value | +-----------+--------+ | baz | foobar | | foo | bar | '-----------+--------' OPTIONS ignore_path use Plack::Builder; builder { enable "DebugReques
NAME scan-prereqs-cpanfile - Scan prerequisite modules and generate CPANfile SYNOPSIS % scan-prereqs-cpanfile --diff=META.json # Generate diff from META.json --diff=cpanfile # Generate diff from cpanfile --ignore=extlib --dir=/foo/bar --scan-test-requires DESCRIPTION This script scans prerequisite modules from your code, and generate CPANfile. You can also list missing prerequisite modules. SCANNI
NAME Net::Twitter::Lite::WithAPIv1_1 - A perl interface to the Twitter API v1.1 VERSION version 0.12008 SYNOPSIS use Net::Twitter::Lite::WithAPIv1_1; use Scalar::Util 'blessed'; my $nt = Net::Twitter::Lite::WithAPIv1_1->new( consumer_key => $consumer_key, consumer_secret => $consumer_secret, access_token => $token, access_token_secret => $token_secret, ); my $result = $nt->update('Hello, world!');
NAME Moo - Minimalist Object Orientation (with Moose compatibility) SYNOPSIS package Cat::Food; use Moo; use strictures 2; use namespace::clean; sub feed_lion { my $self = shift; my $amount = shift || 1; $self->pounds( $self->pounds - $amount ); } has taste => ( is => 'ro', ); has brand => ( is => 'ro', isa => sub { die "Only SWEET-TREATZ supported!" unless $_[0] eq 'SWEET-TREATZ' }, ); has pounds
Atsushi Kobayashi bayashi Fuji, Goro Gelu Lupas issm k-takahashi karupanerura Kaz-su Kazuho Oku ktat lestrrat makamaka Masahiro Chiba Masayuki Matsuki Neil Bowers plsplsme pokutuna sakamossan soh335 Tokuhiro Matsuno Toshio Ito yamaguchi.toru NAME SQL::Maker - Yet another SQL builder SYNOPSIS use SQL::Maker; my $builder = SQL::Maker->new( driver => 'SQLite', # or your favorite driver ); # SELECT ($
NAME L - Perl extension to load modules automatically in one-liners. VERSION This document describes L version v1.0.1. SYNOPSIS % perl -ML -E 'say String::Random->new->randregex("[0-9a-zA-Z]{12}")' DESCRIPTION Module auto-loader for one-liners. This module is dangerous, so don't use this module in other perl modules, scripts or production code. This should be used only in one-liners. DEPENDENCIES
Alex Efros Aristotle Pagaltzis Chris Williams Dan Book Dave Rolsky David Steinbrunner Doug Bell Elvin Aslanov Flavio Poletti Gabor Szabo Gabriel Andrade George Hartzell Geraud Continsouzas Goro Fuji Graham Knop Graham Ollis Ian Sillitoe James Hunt John Karr Karen Etheridge Mark Ellis Martin H. Sluka Martin Kjeldsen Mary Ehlers Michael G. Schwern Nicolas R Nicolas Rochelemagne Nigel Gregoire Philip
NAME Smart::Options - smart command line options processor SYNOPSIS use Smart::Options; my $argv = Smart::Options->new->argv; if ($argv->{rif} - 5 * $argv->{xup} > 7.138) { say 'Buy more fiffiwobbles'; } else { say 'Sell the xupptumblers'; } # $ ./example.pl --rif=55 --xup=9.52 # Buy more fiffiwobbles # # $ ./example.pl --rif 12 --xup 8.1 # Sell the xupptumblers DESCRIPTION Smart::Options is a lib
NAME Proclet - minimalistic Supervisor SYNOPSIS use Proclet; my $proclet = Proclet->new( color => 1 ); # add service $proclet->service( code => sub { my $job = $jobqueue->grab; work($job); }, worker => 2, tag => 'worker' ); $proclet->service( code => sub { my $loader = Plack::Loader->load( 'Starlet', port => $port, host => $host || 0, max_workers => 4, ); $loader->run($app); }, tag => 'web' ); $pr
NAME Excel::Writer::XLSX - Create a new file in the Excel 2007+ XLSX format. SYNOPSIS To write a string, a formatted string, a number and a formula to the first worksheet in an Excel workbook called perl.xlsx: use Excel::Writer::XLSX; # Create a new Excel workbook my $workbook = Excel::Writer::XLSX->new( 'perl.xlsx' ); # Add a worksheet $worksheet = $workbook->add_worksheet(); # Add and define a f
次のページ
このページを最初にブックマークしてみませんか?
『The CPAN Search Site - search.cpan.org』の新着エントリーを見る
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く