view release on metacpan or search on metacpan
lib/Cache/Cascade.pm view on Meta::CPAN
my ( $code, %args ) = @_;
$code =~ s/\[%\s*(\w+)\s*%\]/$args{$1} || die "$1 is not in eval" /ge;
eval $code;
}
use namespace::autoclean;
our $VERSION = '0.07';
has caches => (
isa => ArrayRef,
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Cache/Profile.pm view on Meta::CPAN
use Moose;
use Carp;
use Time::HiRes 1.84 qw(tv_interval gettimeofday time clock);
use Try::Tiny;
use Class::MOP;
use namespace::autoclean;
has cache => (
isa => "Object",
is => "ro",
required => 1,
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Cache/Ref/CAR.pm view on Meta::CPAN
use Moose;
use List::Util qw(max min);
use Cache::Ref::CAR::Base ();
use namespace::autoclean;
extends qw(Cache::Ref);
with qw(Cache::Ref::CAR::Base);
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CairoX/Sweet/Elk.pm view on Meta::CPAN
# ABSTRACT: Internal Moose
our $VERSION = '0.0200';
use Moose();
use MooseX::AttributeShortcuts();
use namespace::autoclean();
use Moose::Exporter;
Moose::Exporter->setup_import_methods(also => ['Moose']);
sub init_meta {
lib/CairoX/Sweet/Elk.pm view on Meta::CPAN
my %params = @_;
my $for_class = $params{'for_class'};
Moose->init_meta(@_);
MooseX::AttributeShortcuts->init_meta(for_class => $for_class);
namespace::autoclean->import(-cleanee => $for_class);
}
1;
__END__
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Calendar/Bahai.pm view on Meta::CPAN
use 5.006;
use Data::Dumper;
use Date::Bahai::Simple;
use Moo;
use namespace::autoclean;
with 'Calendar::Plugin::Renderer';
use overload q{""} => 'as_string', fallback => 1;
has year => (is => 'rw', predicate => 1);
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Calendar/Gregorian.pm view on Meta::CPAN
use 5.006;
use Data::Dumper;
use Date::Gregorian::Simple;
use Moo;
use namespace::autoclean;
use overload q{""} => 'as_string', fallback => 1;
has year => (is => 'rw', predicate => 1);
has month => (is => 'rw', predicate => 1);
has date => (is => 'ro', default => sub { Date::Gregorian::Simple->new });
view all matches for this distribution
view release on metacpan or search on metacpan
0.07 Tue Nov 18 18:30:00 2018
- Updated dependency on Date::Hebrew::Simple v0.10.
0.06 Mon Nov 12 14:10:00 2018
- Used namespace::autoclean instead.
0.05 Sat Oct 21 08:00:00 2017
- Added test scripts (t/meta-json.t and t/meta-yml.t).
0.04 Sat Oct 07 10:25:00 2017
view all matches for this distribution