Log-Dispatch-Gtk2-Notify

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

---
abstract: 'send log messages to a desktop notification daemon'
author:
  - 'Florian Ragwitz <rafl@debian.org>'
build_requires: {}
configure_requires:
  ExtUtils::MakeMaker: 6.11
generated_by: 'Dist::Zilla version 1.100651'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: 1.4

Makefile.PL  view on Meta::CPAN

                       'test' => {
                                   'TESTS' => 't/*.t'
                                 },
                       'NAME' => 'Log::Dispatch::Gtk2::Notify',
                       'DISTNAME' => 'Log-Dispatch-Gtk2-Notify',
                       'CONFIGURE_REQUIRES' => {
                                                 'ExtUtils::MakeMaker' => '6.11'
                                               },
                       'AUTHOR' => 'Florian Ragwitz <rafl@debian.org>',
                       'BUILD_REQUIRES' => {},
                       'ABSTRACT' => 'send log messages to a desktop notification daemon',
                       'EXE_FILES' => [],
                       'VERSION' => '0.02',
                       'PREREQ_PM' => {
                                        'MooseX::Types::Moose' => '0',
                                        'namespace::clean' => '0',
                                        'MooseX::Types' => '0',
                                        'Gtk2::Notify' => '0',
                                        'Log::Dispatch' => '0',
                                        'File::Basename' => '0',
                                        'Gtk2' => '0',

README  view on Meta::CPAN



This archive contains the distribution Log-Dispatch-Gtk2-Notify, version
0.02:

  send log messages to a desktop notification daemon

This software is copyright (c) 2010 by Florian Ragwitz.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

lib/Log/Dispatch/Gtk2/Notify.pm  view on Meta::CPAN

package Log::Dispatch::Gtk2::Notify;
our $VERSION = '0.02';
# ABSTRACT: send log messages to a desktop notification daemon


use Moose;
use MooseX::Types::Moose qw/Str HashRef ArrayRef CodeRef/;
use Log::Dispatch::Gtk2::Notify::Types qw/
    LogLevel
    Widget     is_Widget
    StatusIcon is_StatusIcon
    Pixbuf
/;

lib/Log/Dispatch/Gtk2/Notify.pm  view on Meta::CPAN

__PACKAGE__->meta->make_immutable(inline_constructor => 0);


1;

__END__
=pod

=head1 NAME

Log::Dispatch::Gtk2::Notify - send log messages to a desktop notification daemon

=head1 VERSION

version 0.02

=head1 SYNOPSIS

    use Log::Dispatch::Gtk2::Notify;

    my $notify = Log::Dispatch::Gtk2::Notify->new(
        name      => 'notify',
        min_level => 'debug',
        app_name  => 'MyApp',
        title     => 'Important Message',
    );

    $notify->log(level => 'alert', message => 'Hello, World!');

=head1 DESCRIPTION

This modules allows you to send log messages to the desktop notification
daemon.

=cut

=pod

=for Pod::Coverage BUILD
log_message

=head1 AUTHOR



( run in 0.619 second using v1.01-cache-2.11-cpan-299005ec8e3 )