Catalyst-View-HTML-Mason

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "Catalyst::Runtime" : "5.80",
            "Catalyst::View" : "0",
            "Data::Visitor::Callback" : "0",
            "Encode::Encoding" : "0",
            "HTML::Mason" : "0",
            "Module::Runtime" : "0",
            "Moose" : "0",
            "Moose::Util::TypeConstraints" : "0",
            "MooseX::Types::Moose" : "0",
            "MooseX::Types::Structured" : "0",
            "Try::Tiny" : "0",
            "namespace::autoclean" : "0",
            "strict" : "0",
            "warnings" : "0"
         }
      },
      "test" : {
         "requires" : {
            "Capture::Tiny" : "0.10",
            "Catalyst" : "0",
            "Catalyst::Action::RenderView" : "0",

META.yml  view on Meta::CPAN

  Catalyst::Runtime: '5.80'
  Catalyst::View: '0'
  Data::Visitor::Callback: '0'
  Encode::Encoding: '0'
  HTML::Mason: '0'
  Module::Runtime: '0'
  Moose: '0'
  Moose::Util::TypeConstraints: '0'
  MooseX::Types::Moose: '0'
  MooseX::Types::Structured: '0'
  Try::Tiny: '0'
  namespace::autoclean: '0'
  strict: '0'
  warnings: '0'
resources:
  bugtracker: http://rt.cpan.org/Public/Dist/Display.html?Name=Catalyst-View-HTML-Mason
  homepage: http://metacpan.org/release/Catalyst-View-HTML-Mason
  repository: git://github.com/perl-catalyst/catalyst-view-html-mason
version: '0.19'
x_Dist_Zilla:
  perl:

Makefile.PL  view on Meta::CPAN

    "Catalyst::Runtime" => "5.80",
    "Catalyst::View" => 0,
    "Data::Visitor::Callback" => 0,
    "Encode::Encoding" => 0,
    "HTML::Mason" => 0,
    "Module::Runtime" => 0,
    "Moose" => 0,
    "Moose::Util::TypeConstraints" => 0,
    "MooseX::Types::Moose" => 0,
    "MooseX::Types::Structured" => 0,
    "Try::Tiny" => 0,
    "namespace::autoclean" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "Capture::Tiny" => "0.10",
    "Catalyst" => 0,
    "Catalyst::Action::RenderView" => 0,
    "Catalyst::Controller" => 0,
    "Catalyst::Helper" => "1.33",

Makefile.PL  view on Meta::CPAN

  "FindBin" => 0,
  "HTML::Mason" => 0,
  "Module::Runtime" => 0,
  "Moose" => 0,
  "Moose::Util::TypeConstraints" => 0,
  "MooseX::Types::Moose" => 0,
  "MooseX::Types::Structured" => 0,
  "Path::Class" => 0,
  "Test::Exception" => 0,
  "Test::More" => "0.89",
  "Try::Tiny" => 0,
  "base" => 0,
  "lib" => 0,
  "namespace::autoclean" => 0,
  "strict" => 0,
  "utf8" => 0,
  "warnings" => 0
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {

lib/Catalyst/View/HTML/Mason.pm  view on Meta::CPAN

package Catalyst::View::HTML::Mason;
our $AUTHORITY = 'cpan:FLORA';
# ABSTRACT: HTML::Mason rendering for Catalyst
$Catalyst::View::HTML::Mason::VERSION = '0.19';
use Moose;
use Try::Tiny;
use MooseX::Types::Moose qw/ArrayRef HashRef ClassName Str Bool Object CodeRef/;
use MooseX::Types::Structured qw/Tuple/;
use Encode::Encoding;
use Data::Visitor::Callback;
use Module::Runtime;

use namespace::autoclean;

extends 'Catalyst::View';



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