CatalystX-ASP

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

        - Further optimize by loading ASP object during setup

0.21    Thu Oct 20 10:47:55 2016 -0700
        - Make Dispatcher match pattern configurable

0.20    Tue Oct 18 18:43:13 2016 -0700
        - Make %ENV cleaner (without refs)
        - Actually, localizing needs to make copy still

0.l9    Fri Oct 14 15:03:39 2016 -0700
        - Refactor error handling code, use Try::Tiny
        - Localize %ENV!! It's very important!

0.l8    Thu Oct 13 16:01:04 2016 -0700
        - Allow for contextual values for Request attrs

0.17    Thu Oct 13 01:38:56 2016 -0700
        - Keep ASP object in View
        - Destroy global objects in right order

0.16    Wed Oct 12 18:29:43 2016 -0700

META.json  view on Meta::CPAN

            "HTTP::Date" : "0",
            "List::Util" : "0",
            "Module::Runtime" : "0",
            "Moose" : "0",
            "MooseX::Types::Path::Tiny" : "0",
            "Path::Tiny" : "0",
            "Scalar::Util" : "0",
            "Text::SimpleTable" : "0",
            "Tie::Handle" : "0",
            "Tie::Hash" : "0",
            "Try::Tiny" : "0",
            "URI" : "0",
            "URI::Escape" : "0",
            "namespace::autoclean" : "0",
            "namespace::clean" : "0",
            "parent" : "0",
            "perl" : "5.010"
         }
      }
   },
   "provides" : {

META.yml  view on Meta::CPAN

  HTTP::Date: '0'
  List::Util: '0'
  Module::Runtime: '0'
  Moose: '0'
  MooseX::Types::Path::Tiny: '0'
  Path::Tiny: '0'
  Scalar::Util: '0'
  Text::SimpleTable: '0'
  Tie::Handle: '0'
  Tie::Hash: '0'
  Try::Tiny: '0'
  URI: '0'
  URI::Escape: '0'
  namespace::autoclean: '0'
  namespace::clean: '0'
  parent: '0'
  perl: '5.010'
resources:
  bugtracker: https://github.com/stvleung/CatalystX-ASP/issues
  homepage: https://github.com/stvleung/CatalystX-ASP
  repository: git://github.com/stvleung/CatalystX-ASP.git

Makefile.PL  view on Meta::CPAN

  "HTTP::Date" => 0,
  "List::Util" => 0,
  "Module::Runtime" => 0,
  "Moose" => 0,
  "MooseX::Types::Path::Tiny" => 0,
  "Path::Tiny" => 0,
  "Scalar::Util" => 0,
  "Text::SimpleTable" => 0,
  "Tie::Handle" => 0,
  "Tie::Hash" => 0,
  "Try::Tiny" => 0,
  "URI" => 0,
  "URI::Escape" => 0,
  "namespace::autoclean" => 0,
  "namespace::clean" => 0,
  "parent" => 0,
  "perl" => "5.010"
}
,
);

cpanfile  view on Meta::CPAN

requires 'HTTP::Date';
requires 'List::Util';
requires 'Module::Runtime';
requires 'Moose';
requires 'MooseX::Types::Path::Tiny';
requires 'Path::Tiny';
requires 'Scalar::Util';
requires 'Text::SimpleTable';
requires 'Tie::Handle';
requires 'Tie::Hash';
requires 'Try::Tiny';
requires 'URI';
requires 'URI::Escape';
requires 'namespace::autoclean';
requires 'namespace::clean';
requires 'parent';
requires 'perl', '5.010';

on build => sub {
    requires 'Catalyst::Plugin::Session';
    requires 'Catalyst::Plugin::Session::State::Cookie';

lib/CatalystX/ASP/View.pm  view on Meta::CPAN

package CatalystX::ASP::View;

use namespace::autoclean;
use Moose;
use CatalystX::ASP;
use Scalar::Util qw(blessed);
use HTTP::Date qw(time2str);
use Try::Tiny;

extends 'Catalyst::View';

has 'asp' => (
    is  => 'rw',
    isa => 'CatalystX::ASP',
);

=head1 NAME



( run in 0.632 second using v1.01-cache-2.11-cpan-05444aca049 )