CatalystX-ExtJS-REST
view release on metacpan or search on metacpan
"Catalyst::Runtime" => "5.80024",
"CatalystX::ExtJS::Direct" => "v2.1.5",
"DBIx::Class" => "0.08127",
"HTML::Entities" => 0,
"HTML::FormFu::ExtJS" => 0,
"HTML::FormFu::Model::DBIC" => "0.08",
"JavaScript::Dumper" => "0.011",
"Lingua::EN::Inflect" => 0,
"Moose" => "1.21",
"Path::Class" => 0,
"Try::Tiny" => 0
},
"script_files" => [],
"test_requires" => {
"Test::More" => "0.88"
}
);
my %fallback_build_requires = (
"Module::Build" => "0.3601",
"Catalyst::Runtime" : "5.80024",
"CatalystX::ExtJS::Direct" : "v2.1.5",
"DBIx::Class" : "0.08127",
"HTML::Entities" : "0",
"HTML::FormFu::ExtJS" : "0",
"HTML::FormFu::Model::DBIC" : "0.08",
"JavaScript::Dumper" : "0.011",
"Lingua::EN::Inflect" : "0",
"Moose" : "1.21",
"Path::Class" : "0",
"Try::Tiny" : "0"
}
},
"test" : {
"requires" : {
"Test::More" : "0.88"
}
}
},
"provides" : {
"CatalystX::Action::ExtJS::REST" : {
Catalyst::Runtime: 5.80024
CatalystX::ExtJS::Direct: v2.1.5
DBIx::Class: 0.08127
HTML::Entities: 0
HTML::FormFu::ExtJS: 0
HTML::FormFu::Model::DBIC: 0.08
JavaScript::Dumper: 0.011
Lingua::EN::Inflect: 0
Moose: 1.21
Path::Class: 0
Try::Tiny: 0
resources:
bugtracker: http://rt.cpan.org/Public/Dist/Display.html?Name=CatalystX-ExtJS-REST
homepage: http://search.cpan.org/dist/CatalystX-ExtJS-REST/
repository: git://github.com/monken/p5-catalystx-extjs-rest.git
version: 2.1.3
x_Dist_Zilla:
perl:
version: 5.018002
plugins:
-
[Prereqs]
Catalyst::Action::REST = 0.88
DBIx::Class = 0.08127
Catalyst::Action::RenderView = 0
Catalyst::Runtime = 5.80024
Moose = 1.21
HTML::FormFu::Model::DBIC = 0.08
HTML::FormFu::ExtJS = 0
JavaScript::Dumper = 0.011
Try::Tiny = 0
CatalystX::ExtJS::Direct = 2.1.5
HTML::Entities = 0
Lingua::EN::Inflect = 0
Path::Class = 0
[GatherDir]
[ReportVersions::Tiny]
; -- remove some files
lib/CatalystX/Controller/ExtJS/REST.pm view on Meta::CPAN
use MooseX::MethodAttributes;
use Config::Any;
use Scalar::Util ();
use Carp qw/ croak /;
use HTML::FormFu::ExtJS 0.076;
use Path::Class;
use HTML::Entities;
use Lingua::EN::Inflect;
use JSON;
use Try::Tiny;
use Moose::Util::TypeConstraints;
subtype 'PathClassDir', as 'Path::Class::Dir';
coerce 'PathClassDir', from 'ArrayRef', via { Path::Class::Dir->new( @{$_[0]} ) };
coerce 'PathClassDir', from 'Str', via { Path::Class::Dir->new( $_[0] ) };
subtype 'PathClassFile', as 'Path::Class::File';
coerce 'PathClassFile', from 'ArrayRef', via { Path::Class::File->new( @{$_[0]} ) };
coerce 'PathClassFile', from 'Str', via { Path::Class::File->new( $_[0] ) };
no Moose::Util::TypeConstraints;
t/000-report-versions-tiny.t view on Meta::CPAN
eval { $v .= pmver('DBIx::Class','0.08127') };
eval { $v .= pmver('HTML::Entities','any version') };
eval { $v .= pmver('HTML::FormFu::ExtJS','any version') };
eval { $v .= pmver('HTML::FormFu::Model::DBIC','0.08') };
eval { $v .= pmver('JavaScript::Dumper','0.011') };
eval { $v .= pmver('Lingua::EN::Inflect','any version') };
eval { $v .= pmver('Module::Build','0.3601') };
eval { $v .= pmver('Moose','1.21') };
eval { $v .= pmver('Path::Class','any version') };
eval { $v .= pmver('Test::More','0.88') };
eval { $v .= pmver('Try::Tiny','any version') };
# All done.
$v .= <<'EOT';
Thanks for using my code. I hope it works for you.
If not, please try and include this output in the bug report.
That will help me reproduce the issue and solve your problem.
EOT
( run in 0.577 second using v1.01-cache-2.11-cpan-05444aca049 )