BusyBird-DateTime-Format
view release on metacpan or search on metacpan
"prereqs" : {
"configure" : {
"requires" : {
"Module::Build" : "0.42",
"Module::Build::Prereqs::FromCPANfile" : "0.02"
}
},
"runtime" : {
"requires" : {
"DateTime::Format::Strptime" : "0",
"Try::Tiny" : "0"
}
},
"test" : {
"requires" : {
"DateTime" : "0",
"Test::More" : "0"
}
}
},
"release_status" : "stable",
directory:
- t
- xt
- eg
- inc
- share
file:
- README.pod
requires:
DateTime::Format::Strptime: '0'
Try::Tiny: '0'
resources:
bugtracker: https://github.com/debug-ito/BusyBird-DateTime-Format/issues
repository: git://github.com/debug-ito/BusyBird-DateTime-Format.git
version: '0.05'
requires "DateTime::Format::Strptime" => "0";
requires "Try::Tiny" => "0";
on 'test' => sub {
requires 'Test::More' => "0";
requires 'DateTime' => "0";
};
on 'configure' => sub {
requires 'Module::Build', '0.42';
requires 'Module::Build::Prereqs::FromCPANfile', "0.02";
};
lib/BusyBird/DateTime/Format.pm view on Meta::CPAN
package BusyBird::DateTime::Format;
use strict;
use warnings;
use DateTime::Format::Strptime;
use Try::Tiny;
our $VERSION = "0.05";
our $preferred = 0;
my %OPT_DEFAULT = (
locale => 'en_US',
on_error => 'undef',
);
( run in 0.900 second using v1.01-cache-2.11-cpan-05444aca049 )