App-GUI-Notepad
view release on metacpan or search on metacpan
Test::NeedsDisplay: 0
distribution_type: module
generated_by: Module::Install version 0.56
license: perl
name: App-GUI-Notepad
no_index:
directory:
- inc
- t
requires:
Data::Dumper: 0
File::Spec: 0.80
Wx: 0.25
perl: 5.005
version: 0.03
Makefile.PL view on Meta::CPAN
# Make sure we have a display
use Test::NeedsDisplay;
name 'App-GUI-Notepad';
abstract 'A cross-platform CPAN-installable Perl Notepad';
author 'Ben Marsh';
license 'perl';
all_from 'lib/App/GUI/Notepad.pm';
requires 'File::Spec' => '0.80';
requires 'Data::Dumper' => 0;
requires 'Wx' => '0.25';
build_requires 'Test::More' => '0.47';
# Allow testing on systems without a display
build_requires 'Test::NeedsDisplay' => 0;
include 'Test::NeedsDisplay';
install_script 'bin/perlpad';
auto_install;
WriteAll;
lib/App/GUI/Notepad.pm view on Meta::CPAN
package App::GUI::Notepad;
use 5.005;
use strict;
use Data::Dumper;
use Wx;
use base qw/Wx::App/;
use App::GUI::Notepad::Frame;
use vars qw{$VERSION};
BEGIN {
$VERSION = '0.03';
}
sub OnInit {
( run in 0.315 second using v1.01-cache-2.11-cpan-4d50c553e7e )