Emacs-Run-ExtractDocs

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

    dist_version_from   => 'lib/Emacs/Run/ExtractDocs.pm',
    build_requires => {
        'Test::More'  => 0,
        'File::Path'  => 0,
        'File::Copy'  => 0,
        'Fatal'       => 0,
        'Cwd'         => 0,
        'FindBin'     => 0,
        'lib'         => 0,
        'Date::Calc'  => 0,
        'Test::Differences' => 0,
    },
    requires => {
        'strict'         => 0,
        'warnings'       => 0,
        'Carp'           => 0,
        'Data::Dumper'   => 0,
        'Hash::Util'     => 0,
        'File::Basename' => 0,
        'Env'            => 0,
        'Emacs::Run'     => 0,

META.yml  view on Meta::CPAN

license: perl
resources:
  license: http://dev.perl.org/licenses/
build_requires:
  Cwd: 0
  Date::Calc: 0
  Fatal: 0
  File::Copy: 0
  File::Path: 0
  FindBin: 0
  Test::Differences: 0
  Test::More: 0
  lib: 0
requires:
  Carp: 0
  Class::Base: 0
  Data::Dumper: 0
  Emacs::Run: 0
  Env: 0
  File::Basename: 0
  Hash::Util: 0

Makefile.PL  view on Meta::CPAN

                           'Data::Dumper' => 0,
                           'Date::Calc' => 0,
                           'Emacs::Run' => 0,
                           'Env' => 0,
                           'Fatal' => 0,
                           'File::Basename' => 0,
                           'File::Copy' => 0,
                           'File::Path' => 0,
                           'FindBin' => 0,
                           'Hash::Util' => 0,
                           'Test::Differences' => 0,
                           'Test::More' => 0,
                           'lib' => 0,
                           'strict' => 0,
                           'warnings' => 0
                         },
          'INSTALLDIRS' => 'site',
          'EXE_FILES' => [],
          'PL_FILES' => {}
        )
;

README  view on Meta::CPAN

DEPENDENCIES

This module depends on having Gnu/emacs installed on the system
(it might work with xemacs but this is untested).

This module requires these other modules and libraries:
   Class::Base
   Emacs::Run

The tests require:
   Test::Differences
   Test::More

SUPPORT AND DOCUMENTATION

After installing, you can find documentation for this module with the
perldoc command.

    perldoc Emacs::Run::ExtractDocs

You can also look for information at:

t/02-Emacs-Run-ExtractDocs-perl.t  view on Meta::CPAN

use strict;
$|=1;
my $DEBUG = 0;
use Data::Dumper;
use Date::Calc qw{ Today Month_to_Text };

use File::Path     qw( mkpath );
use File::Basename qw( fileparse basename dirname );
use File::Copy     qw( copy move );

use Test::Differences;
use Test::More;

use FindBin qw( $Bin );
use lib ("$Bin/../lib");
use lib ("$Bin/../../Emacs-Run/lib");  # actually needed for development only

my $emacs_found = `emacs --version 2>/dev/null`;

if( not( $emacs_found ) ) {
  plan skip_all => 'emacs was not found in PATH';



( run in 1.374 second using v1.01-cache-2.11-cpan-22024b96cdf )