Skip to content

Commit

Permalink
write POD
Browse files Browse the repository at this point in the history
  • Loading branch information
masartz committed Nov 1, 2010
1 parent 3e073e6 commit e69dda5
Show file tree
Hide file tree
Showing 5 changed files with 59 additions and 10 deletions.
1 change: 1 addition & 0 deletions Makefile.PL
Expand Up @@ -2,6 +2,7 @@ use inc::Module::Install;
name 'Qudo-Driver-DBI';
all_from 'lib/Qudo/Driver/DBI.pm';

requires 'Carp';
requires 'Qudo';
requires 'DBI';

Expand Down
58 changes: 58 additions & 0 deletions lib/Qudo/Driver/DBI.pm
Expand Up @@ -604,3 +604,61 @@ sub func_from_id {

1;

__END__
=head1 NAME
Qudo::Driver::DBI - Yet another driver module for Qudo
=head1 SYNOPSIS
use Qudo;
my $qudo = Qudo->new(
driver_class => 'DBI',
databases => [+{
dsn => 'dbi:mysql:qudo',
username => 'root',
password => '',
}],
);
$qudo->enqueue("MyApp::Worker::Sample", { arg => $arg });
=head1 DESCRIPTION
Qudo is simple and extensible job queue manager.
It use DBIx::Skinny as driver dlass to connect DB.
This module provide another DB driver class for Qudo.
Qudo::Driver::DBI depends on only DBI module.
=head1 METHODS
This module make synchronization with Qudo::Driver::Skinny's methods a mission.
So Qudo::Driver::Skinny's methods equal to this module's methods.
=head1 REPOS
http://github.com/nekokak/p5-qudo-driver-dbi/tree/master
=head1 AUTHOR
Masaru Hoshino <masartz _at_ gmail dot com>
Atsushi Kobayashi <nekokak _at_ gmail dot com>
Keiji Yoshimi <walf443 _at_ gmail dot com>
=head1 SEE ALSO
L<Qudo>
=head1 COPYRIGHT
This library 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.
=cut
10 changes: 0 additions & 10 deletions xt/01_podspell.t

This file was deleted.

File renamed without changes.
File renamed without changes.

0 comments on commit e69dda5

Please sign in to comment.