Acme-CatFS

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: 1.4
name: Acme-CatFS
requires:
  Carp: 0
  Fuse::Simple: 0
  LWP::Simple: 0
  Moo: 0
  MooX::Options: 0
  Try::Tiny: 0
  Types::Path::Tiny: 0
  perl: 5.010
resources:
  bugtracker: https://github.com/peczenyj/catfs/issues
  homepage: https://github.com/peczenyj/catfs
  repository: git://github.com/peczenyj/catfs.git
version: 0.002

Makefile.PL  view on Meta::CPAN

    "bin/acme-catfs"
  ],
  "LICENSE" => "perl",
  "NAME" => "Acme::CatFS",
  "PREREQ_PM" => {
    "Carp" => 0,
    "Fuse::Simple" => 0,
    "LWP::Simple" => 0,
    "Moo" => 0,
    "MooX::Options" => 0,
    "Try::Tiny" => 0,
    "Types::Path::Tiny" => 0
  },
  "TEST_REQUIRES" => {
    "Test::Exception" => 0,
    "Test::More" => 0,
    "Test::TinyMocker" => 0
  },
  "VERSION" => "0.002",
  "test" => {
    "TESTS" => "t/*.t"

Makefile.PL  view on Meta::CPAN


my %FallbackPrereqs = (
  "Carp" => 0,
  "Fuse::Simple" => 0,
  "LWP::Simple" => 0,
  "Moo" => 0,
  "MooX::Options" => 0,
  "Test::Exception" => 0,
  "Test::More" => 0,
  "Test::TinyMocker" => 0,
  "Try::Tiny" => 0,
  "Types::Path::Tiny" => 0
);


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

lib/Acme/CatFS.pm  view on Meta::CPAN

use strict;
use warnings;
package Acme::CatFS;

# ABSTRACT: Fuse filesystem with a random pic of a cat

use feature qw(say state);
use Carp;
use Try::Tiny;
use LWP::Simple;
use Fuse::Simple;

use Moo;
use MooX::Options;
use Types::Path::Tiny qw(Dir);

option mountpoint => ( 
  is       => 'ro', 
  isa      => Dir,



( run in 0.883 second using v1.01-cache-2.11-cpan-0d8aa00de5b )