Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Zbigniew Lukasiak committed Dec 28, 2009
0 parents commit 16fe51d
Show file tree
Hide file tree
Showing 40 changed files with 3,643 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Revision history for WebNano

0.0.1 Mon Dec 28 09:59:08 2009
Initial release.

18 changes: 18 additions & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
use inc::Module::Install;

name 'WebNano';
all_from 'lib/WebNano.pm';
author q{Zbigniew Łukasiak <zby@cpan.org>};
license 'perl';

requires 'Moose';
requires 'Plack::Request';
requires 'Scalar::Util';
requires 'Class::MOP';

build_requires 'Test::More';

auto_install;

WriteAll;

38 changes: 38 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
WebNano version 0.0.1

[ REPLACE THIS...

The README is used to introduce the module and provide instructions on
how to install the module, any machine dependencies it may have (for
example C compilers and installed libraries) and any other information
that should be understood before the module is installed.

A README file is required for CPAN modules since CPAN extracts the
README file from a module distribution so that people browsing the
archive can use it get an idea of the modules uses. It is usually a
good idea to provide version information here so that people can
decide whether fixes for the module are worth downloading.
]


INSTALLATION

To install this module, run the following commands:

perl Makefile.PL
make
make test
make install


DEPENDENCIES

None.


COPYRIGHT AND LICENCE

Copyright (C) 2009, Zbigniew Łukasiak

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
Loading

0 comments on commit 16fe51d

Please sign in to comment.