Skip to content

Commit

Permalink
Build results of 3fd3bab (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
yanick committed Jan 13, 2015
2 parents 3fd3bab + f961371 commit e452e53
Show file tree
Hide file tree
Showing 287 changed files with 998 additions and 23,329 deletions.
2 changes: 0 additions & 2 deletions .gitignore

This file was deleted.

6 changes: 0 additions & 6 deletions .gitmodules

This file was deleted.

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

# CPAN Covenant for App-Chorus

I, Yanick Champoux <yanick@cpan.org>, hereby give modules@perl.org permission to grant co-maintainership
to App-Chorus, 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.

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

# This file was automatically generated by Dist::Zilla::Plugin::ModuleBuild v5.029.
use strict;
use warnings;

use Module::Build 0.3601;


my %module_build_args = (
"build_requires" => {
"Module::Build" => "0.3601"
},
"configure_requires" => {
"Module::Build" => "0.3601"
},
"dist_abstract" => "Markdown-based slidedeck server app",
"dist_author" => [
"Yanick Champoux <yanick\@cpan.org>"
],
"dist_name" => "App-Chorus",
"dist_version" => "1.1.0",
"license" => "perl",
"module_name" => "App::Chorus",
"recommends" => {},
"recursive_test_files" => 1,
"requires" => {
"Dancer" => 0,
"File::ShareDir::Tarball" => 0,
"Getopt::Long" => 0,
"HTML::Entities" => 0,
"Moose" => 0,
"Path::Tiny" => 0,
"Plack::Loader" => 0,
"Text::Markdown" => 0,
"Web::Query" => 0,
"perl" => "v5.10.0",
"strict" => 0,
"warnings" => 0
},
"script_files" => [
"bin/chorus"
],
"share_dir" => {
"dist" => "share"
},
"test_requires" => {
"Test::More" => "0.88"
}
);


my %fallback_build_requires = (
"Module::Build" => "0.3601",
"Test::More" => "0.88"
);


unless ( eval { Module::Build->VERSION(0.4004) } ) {
delete $module_build_args{test_requires};
$module_build_args{build_requires} = \%fallback_build_requires;
}

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

$build->create_build_script;
12 changes: 12 additions & 0 deletions CONTRIBUTORS
@@ -0,0 +1,12 @@

# APP-CHORUS CONTRIBUTORS #

This is the (likely incomplete) list of people who have helped
make this distribution what it is, either via code contributions,
patches, bug reports, help with troubleshooting, etc. A huge
'thank you' to all of them.

* Drew Taylor
* Yanick Champoux


11 changes: 2 additions & 9 deletions Changes
@@ -1,18 +1,11 @@
Revision history for App-Chorus

{{$NEXT}}
[API CHANGES]

[BUG FIXES]

[DOCUMENTATION]

1.1.0 2015-01-13
[ENHANCEMENTS]
- add "title_slide" as a class of the first section.

[NEW FEATURES]

[STATISTICS]
- code churn: 2 files changed, 17 insertions(+), 2 deletions(-)

1.0.0 2015-01-09
[API CHANGES]
Expand Down
44 changes: 44 additions & 0 deletions INSTALL
@@ -0,0 +1,44 @@

This is the Perl distribution App-Chorus.

Installing App-Chorus is straightforward.

## Installation with cpanm

If you have cpanm, you only need one line:

% cpanm App::Chorus

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 App::Chorus

## Installing with the CPAN shell

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

% cpan App::Chorus

## 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

App-Chorus documentation is available as POD.
You can run perldoc from a shell to read the documentation:

% perldoc App::Chorus

0 comments on commit e452e53

Please sign in to comment.