Skip to content

Commit

Permalink
Build results of ef7290c (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
yanick committed Dec 13, 2012
2 parents ef7290c + 5ecd6ad commit 40af98b
Show file tree
Hide file tree
Showing 17 changed files with 1,181 additions and 116 deletions.
2 changes: 0 additions & 2 deletions .gitignore

This file was deleted.

13 changes: 13 additions & 0 deletions AUTHOR_PLEDGE
@@ -0,0 +1,13 @@

# CPAN Covenant for Catalyst-Plugin-MemoryUsage

I, Yanick Champoux <yanick@babyl.dyndns.org>, hereby give modules@perl.org permission to grant co-maintainership
to Catalyst-Plugin-MemoryUsage, if all the following conditions are met:

(1) I haven't released the module for a year or more
(2) There are outstanding issues in the module's public bug tracker
(3) Email to my CPAN email address hasn't been answered after a month
(4) The requester wants to make worthwhile changes that will benefit CPAN

In the event of my death, then the time-limits in (1) and (3) do not apply.

50 changes: 50 additions & 0 deletions Build.PL
@@ -0,0 +1,50 @@

use strict;
use warnings;

use Module::Build 0.3601;


my %module_build_args = (
"build_requires" => {
"Catalyst" => 0,
"Catalyst::Controller" => 0,
"File::Find" => 0,
"File::Temp" => 0,
"Module::Build" => "0.3601",
"Test::More" => "0.88",
"Test::WWW::Mechanize::Catalyst" => 0,
"parent" => 0
},
"configure_requires" => {
"Module::Build" => "0.3601"
},
"dist_abstract" => "Profile memory usage of requests",
"dist_author" => [
"Yanick Champoux <yanick\@babyl.dyndns.org>"
],
"dist_name" => "Catalyst-Plugin-MemoryUsage",
"dist_version" => "0.4.0",
"license" => "perl",
"module_name" => "Catalyst::Plugin::MemoryUsage",
"recommends" => {},
"recursive_test_files" => 1,
"requires" => {
"Devel::CheckOS" => 0,
"List::Util" => 0,
"MRO::Compat" => 0,
"Memory::Usage" => 0,
"Moose::Role" => 0,
"Number::Bytes::Human" => 0,
"Text::SimpleTable" => 0,
"namespace::autoclean" => 0,
"strict" => 0,
"warnings" => 0
},
"script_files" => []
);


my $build = Module::Build->new(%module_build_args);

$build->create_build_script;
5 changes: 4 additions & 1 deletion Changes
@@ -1,9 +1,12 @@
Revision history for Catalyst::Plugin::MemoryUsage Revision history for Catalyst::Plugin::MemoryUsage


{{$NEXT}} 0.4.0 2012-12-12
[ENHANCEMENTS] [ENHANCEMENTS]
- More data to differentiate requests in the log (Mike Doherty) - More data to differentiate requests in the log (Mike Doherty)


[STATISTICS]
- code churn: 4 files changed, 19 insertions(+), 9 deletions(-)

0.3.1 2011-07-13 0.3.1 2011-07-13
[BUG FIXES] [BUG FIXES]
- Add 'info' function in test app (issue found by Glenn Sumido) - Add 'info' function in test app (issue found by Glenn Sumido)
Expand Down
44 changes: 44 additions & 0 deletions INSTALL
@@ -0,0 +1,44 @@

This is the Perl distribution Catalyst-Plugin-MemoryUsage.

Installing Catalyst-Plugin-MemoryUsage is straightforward.

## Installation with cpanm

If you have cpanm, you only need one line:

% cpanm Catalyst::Plugin::MemoryUsage

If you are installing into a system-wide directory, you may need to pass the
"-S" flag to cpanm, which uses sudo to install the module:

% cpanm -S Catalyst::Plugin::MemoryUsage

## Installing with the CPAN shell

Alternatively, if your CPAN shell is set up, you should just be able to do:

% cpan Catalyst::Plugin::MemoryUsage

## Manual installation

As a last resort, you can manually install it. Download the tarball, untar it,
then build it:

% perl Build.PL
% ./Build && ./Build test

Then install it:

% ./Build install

If you are installing into a system-wide directory, you may need to run:

% sudo ./Build install

## Documentation

Catalyst-Plugin-MemoryUsage documentation is available as POD.
You can run perldoc from a shell to read the documentation:

% perldoc Catalyst::Plugin::MemoryUsage

0 comments on commit 40af98b

Please sign in to comment.