Mojolicious-Plugin-DevexpressHelpers
view release on metacpan or search on metacpan
},
"develop" : {
"requires" : {
"Pod::Coverage::TrustPod" : "0",
"Test::Pod" : "1.41",
"Test::Pod::Coverage" : "1.08"
}
},
"runtime" : {
"requires" : {
"Modern::Perl" : "0",
"Mojo::Base" : "0",
"Mojo::ByteStream" : "0",
"MojoX::AlmostJSON" : "0",
"Mojolicious::Plugin::AssetPack" : "1.20",
"constant" : "0",
"perl" : "5.010",
"strict" : "0",
"utf8" : "0"
}
},
configure_requires:
ExtUtils::MakeMaker: '0'
dynamic_config: 0
generated_by: 'Dist::Zilla version 5.036, CPAN::Meta::Converter version 2.142060'
license: mit
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: '1.4'
name: Mojolicious-Plugin-DevexpressHelpers
requires:
Modern::Perl: '0'
Mojo::Base: '0'
Mojo::ByteStream: '0'
MojoX::AlmostJSON: '0'
Mojolicious::Plugin::AssetPack: '1.20'
constant: '0'
perl: '5.010'
strict: '0'
utf8: '0'
resources:
repository: git://github.com/xlat/Mojolicious-Plugin-DevexpressHelpers.git
Makefile.PL view on Meta::CPAN
"AUTHOR" => "Nicolas Georges <xlat\@cpan.org>",
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "Mojolicious-Plugin-DevexpressHelpers",
"EXE_FILES" => [],
"LICENSE" => "mit",
"MIN_PERL_VERSION" => "5.010",
"NAME" => "Mojolicious::Plugin::DevexpressHelpers",
"PREREQ_PM" => {
"Modern::Perl" => 0,
"Mojo::Base" => 0,
"Mojo::ByteStream" => 0,
"MojoX::AlmostJSON" => 0,
"Mojolicious::Plugin::AssetPack" => "1.20",
"constant" => 0,
"strict" => 0,
"utf8" => 0
},
"TEST_REQUIRES" => {
"Cwd" => 0,
Makefile.PL view on Meta::CPAN
"VERSION" => "0.163572",
"test" => {
"TESTS" => "t/*.t"
}
);
my %FallbackPrereqs = (
"Cwd" => 0,
"ExtUtils::MakeMaker" => 0,
"Modern::Perl" => 0,
"Mojo::Base" => 0,
"Mojo::ByteStream" => 0,
"MojoX::AlmostJSON" => 0,
"Mojolicious::Lite" => 0,
"Mojolicious::Plugin::AssetPack" => "1.20",
"Pod::Coverage::TrustPod" => 0,
"Test::Mojo" => 0,
"Test::More" => 0,
"constant" => 0,
"strict" => 0,
lib/Mojolicious/Plugin/DevexpressHelpers.pm view on Meta::CPAN
package Mojolicious::Plugin::DevexpressHelpers;
$Mojolicious::Plugin::DevexpressHelpers::VERSION = '0.163572';
#ABSTRACT: Add some helpers to add and configure Devexpress controls
use Modern::Perl;
use Mojo::Base 'Mojolicious::Plugin';
use Mojolicious::Plugin::DevexpressHelpers::Helpers;
use MojoX::AlmostJSON;
sub register {
my ( $self, $app, $args ) = @_;
lib/Mojolicious/Plugin/DevexpressHelpers/Helpers.pm view on Meta::CPAN
use utf8;
package Mojolicious::Plugin::DevexpressHelpers::Helpers;
$Mojolicious::Plugin::DevexpressHelpers::Helpers::VERSION = '0.163572';
#ABSTRACT: Helpers for Devexpress controls are defined here
use Modern::Perl;
use Mojo::ByteStream;
use MojoX::AlmostJSON qw(encode_json);
use constant DEBUG => 0;
#Not sure why C<out> function have to decode from utf8,
#but it make my day!
our $OUT_DECODE = 'UTF-8';
our $INDENT_BINDING = 0;
my @generic_controls = qw(
( run in 0.512 second using v1.01-cache-2.11-cpan-a5abf4f5562 )