AnyEvent-Inotify-Simple

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "AnyEvent" : "0",
            "Carp" : "0",
            "Data::Dumper" : "0",
            "File::Next" : "0",
            "Linux::Inotify2" : "0",
            "Moose" : "0",
            "Moose::Role" : "0",
            "MooseX::FileAttribute" : "0",
            "MooseX::Types" : "0",
            "MooseX::Types::Moose" : "0",
            "namespace::autoclean" : "0",
            "namespace::clean" : "0"
         }
      },
      "test" : {
         "requires" : {
            "Directory::Scratch" : "0",
            "MooseX::Declare" : "0",
            "Test::More" : "0",
            "lib" : "0",
            "strict" : "0",

META.yml  view on Meta::CPAN

  AnyEvent: '0'
  Carp: '0'
  Data::Dumper: '0'
  File::Next: '0'
  Linux::Inotify2: '0'
  Moose: '0'
  Moose::Role: '0'
  MooseX::FileAttribute: '0'
  MooseX::Types: '0'
  MooseX::Types::Moose: '0'
  namespace::autoclean: '0'
  namespace::clean: '0'
resources:
  bugtracker: https://github.com/jrockway/anyevent-inotify-simple/issues
  homepage: https://github.com/jrockway/anyevent-inotify-simple
  repository: https://github.com/jrockway/anyevent-inotify-simple.git
version: '0.04'
x_Dist_Zilla:
  perl:
    version: '5.034000'
  plugins:

Makefile.PL  view on Meta::CPAN

    "AnyEvent" => 0,
    "Carp" => 0,
    "Data::Dumper" => 0,
    "File::Next" => 0,
    "Linux::Inotify2" => 0,
    "Moose" => 0,
    "Moose::Role" => 0,
    "MooseX::FileAttribute" => 0,
    "MooseX::Types" => 0,
    "MooseX::Types::Moose" => 0,
    "namespace::autoclean" => 0,
    "namespace::clean" => 0
  },
  "TEST_REQUIRES" => {
    "Directory::Scratch" => 0,
    "MooseX::Declare" => 0,
    "Test::More" => 0,
    "lib" => 0,
    "strict" => 0,
    "warnings" => 0
  },

Makefile.PL  view on Meta::CPAN

  "File::Next" => 0,
  "Linux::Inotify2" => 0,
  "Moose" => 0,
  "Moose::Role" => 0,
  "MooseX::Declare" => 0,
  "MooseX::FileAttribute" => 0,
  "MooseX::Types" => 0,
  "MooseX::Types::Moose" => 0,
  "Test::More" => 0,
  "lib" => 0,
  "namespace::autoclean" => 0,
  "namespace::clean" => 0,
  "strict" => 0,
  "warnings" => 0
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};
  delete $WriteMakefileArgs{BUILD_REQUIRES};
  $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;

lib/AnyEvent/Inotify/EventReceiver/Callback.pm  view on Meta::CPAN

package AnyEvent::Inotify::EventReceiver::Callback;
$AnyEvent::Inotify::EventReceiver::Callback::VERSION = '0.04';
use Moose;
#use namespace::autoclean;

use MooseX::Types::Moose qw(CodeRef);

has 'callback' => (
    traits   => ['Code'],
    is       => 'ro',
    isa      => CodeRef,
    required => 1,
    handles  => {
        call_callback => 'execute',

lib/AnyEvent/Inotify/EventReceiver/Debug.pm  view on Meta::CPAN

package AnyEvent::Inotify::EventReceiver::Debug;
$AnyEvent::Inotify::EventReceiver::Debug::VERSION = '0.04';
use Moose;
use namespace::autoclean;

with 'AnyEvent::Inotify::EventReceiver';
use Carp qw(carp);

sub handle_access {
    my ($self,$file) = @_;
    carp "Access $file";
}

sub handle_modify {

lib/AnyEvent/Inotify/EventReceiver/Null.pm  view on Meta::CPAN

package AnyEvent::Inotify::EventReceiver::Null;
$AnyEvent::Inotify::EventReceiver::Null::VERSION = '0.04';
use Moose;
use namespace::autoclean;

with 'AnyEvent::Inotify::EventReceiver';

sub handle_access {}
sub handle_modify {}
sub handle_attribute_change {}
sub handle_close {}
sub handle_open {}
sub handle_move {}
sub handle_delete {}



( run in 0.253 second using v1.01-cache-2.11-cpan-a5abf4f5562 )