Skip to content

Commit

Permalink
Build results of 5d3eb0a (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
yanick committed Nov 1, 2014
2 parents 5d3eb0a + 0fff7c8 commit 2c1c473
Show file tree
Hide file tree
Showing 21 changed files with 1,211 additions and 172 deletions.
11 changes: 0 additions & 11 deletions .gitignore

This file was deleted.

57 changes: 0 additions & 57 deletions .perlcriticrc

This file was deleted.

34 changes: 0 additions & 34 deletions .perltidyrc

This file was deleted.

22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

75 changes: 75 additions & 0 deletions Build.PL
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@

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

use Module::Build 0.28;


my %module_build_args = (
"build_requires" => {
"Module::Build" => "0.28"
},
"configure_requires" => {
"Module::Build" => "0.28"
},
"dist_abstract" => "A plugin for writing RESTful apps with Dancer2",
"dist_author" => [
"Dancer Core Developers"
],
"dist_name" => "Dancer2-Plugin-REST",
"dist_version" => "0.25",
"license" => "perl",
"module_name" => "Dancer2::Plugin::REST",
"recommends" => {},
"recursive_test_files" => 1,
"requires" => {
"Carp" => 0,
"Class::Load" => 0,
"Dancer2" => "0.149000_01",
"Dancer2::Plugin" => 0,
"Moo::Role" => 0,
"strict" => 0,
"warnings" => 0
},
"script_files" => [],
"test_requires" => {
"Dancer2::Core::Request" => 0,
"Data::Dumper" => 0,
"File::Spec" => 0,
"HTTP::Request::Common" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"JSON" => 0,
"Module::Runtime" => 0,
"Plack::Test" => 0,
"Test::More" => "0.88",
"perl" => "5.006"
}
);


my %fallback_build_requires = (
"Dancer2::Core::Request" => 0,
"Data::Dumper" => 0,
"File::Spec" => 0,
"HTTP::Request::Common" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"JSON" => 0,
"Module::Build" => "0.28",
"Module::Runtime" => 0,
"Plack::Test" => 0,
"Test::More" => "0.88",
"perl" => "5.006"
);


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;
15 changes: 4 additions & 11 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
Revision history for Dancer2-Plugin-REST

{{$NEXT}}
[API CHANGES]

0.25 2014-11-01
[BUG FIXES]
- Change tests to use Pack::Test instead of
the deprecated Dancer2::Test. (GH#3, Davs)

[DOCUMENTATION]

[ENHANCEMENTS]

[NEW FEATURES]
- Change tests to use Pack::Test instead of the deprecated Dancer2::Test.
(GH#3, Davs)

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

0.24 2014-09-01
[MISC]
Expand Down
44 changes: 44 additions & 0 deletions INSTALL
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@

This is the Perl distribution Dancer2-Plugin-REST.

Installing Dancer2-Plugin-REST is straightforward.

## Installation with cpanm

If you have cpanm, you only need one line:

% cpanm Dancer2::Plugin::REST

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 Dancer2::Plugin::REST

## Installing with the CPAN shell

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

% cpan Dancer2::Plugin::REST

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

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

% perldoc Dancer2::Plugin::REST
Loading

0 comments on commit 2c1c473

Please sign in to comment.