forked from yanick/Dancer2-Plugin-REST
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build results of 5d3eb0a (on master)
- Loading branch information
Showing
21 changed files
with
1,211 additions
and
172 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.