Dancer2-Plugin-ViewCache

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: Dancer2-Plugin-ViewCache
provides:
  Dancer2::Plugin::ViewCache:
    file: lib/Dancer2/Plugin/ViewCache.pm
    version: '1.0001'
requires:
  Carp: '0'
  Dancer2::Plugin: '0'
  Modern::Perl: '0'
version: '1.0001'
x_BuiltWith:
  failures:
    DBIx::Class::Core: 'Module::MetaData could not parse a version from /opt/perl5/perls/perl-5.34.1/lib/site_perl/5.34.1/DBIx/Class/Core.pm'
    DBIx::Class::Schema: 'Module::MetaData could not parse a version from /opt/perl5/perls/perl-5.34.1/lib/site_perl/5.34.1/DBIx/Class/Schema.pm'
    Plack::Test: 'Module::MetaData could not parse a version from /opt/perl5/perls/perl-5.34.1/lib/site_perl/5.34.1/Plack/Test.pm'
  modules:
    Carp: '1.52'
    Dancer2: '0.400000'
    Dancer2::Plugin: '0.400000'
    Dancer2::Plugin::DBIC: '0.0100'
    ExtUtils::MakeMaker: '7.62'
    File::Copy: '2.35'
    File::Spec: '3.80'
    File::Temp: '0.2311'
    FindBin: '1.52'
    HTTP::Request::Common: '6.44'
    IO::Handle: '1.46'
    IPC::Open3: '1.21'
    JSON::MaybeXS: '1.004004'
    Modern::Perl: '1.20220515'
    Test2::Tools::Subtest: '0.000145'
    Test2::V0: '0.000145'
    Test::More: '1.302183'
    base: '2.27'
    lib: '0.65'
    strict: '1.12'
    utf8: '1.24'
    warnings: '1.51'
  perl:
    original: v5.34.1

Makefile.PL  view on Meta::CPAN

  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0
  },
  "DISTNAME" => "Dancer2-Plugin-ViewCache",
  "LICENSE" => "perl",
  "MIN_PERL_VERSION" => "5.006",
  "NAME" => "Dancer2::Plugin::ViewCache",
  "PREREQ_PM" => {
    "Carp" => 0,
    "Dancer2::Plugin" => 0,
    "Modern::Perl" => 0
  },
  "TEST_REQUIRES" => {
    "DBIx::Class::Core" => 0,
    "DBIx::Class::Schema" => 0,
    "Dancer2" => 0,
    "Dancer2::Plugin::DBIC" => 0,
    "File::Copy" => 0,
    "File::Spec" => 0,
    "File::Temp" => 0,
    "FindBin" => 0,

Makefile.PL  view on Meta::CPAN

  "Dancer2::Plugin" => 0,
  "Dancer2::Plugin::DBIC" => 0,
  "File::Copy" => 0,
  "File::Spec" => 0,
  "File::Temp" => 0,
  "FindBin" => 0,
  "HTTP::Request::Common" => 0,
  "IO::Handle" => 0,
  "IPC::Open3" => 0,
  "JSON::MaybeXS" => 0,
  "Modern::Perl" => 0,
  "Plack::Test" => 0,
  "Test2::Tools::Subtest" => 0,
  "Test2::V0" => 0,
  "Test::More" => "0.94",
  "base" => 0,
  "lib" => 0,
  "strict" => 0,
  "utf8" => 0,
  "warnings" => 0
);

lib/Dancer2/Plugin/ViewCache.pm  view on Meta::CPAN

package Dancer2::Plugin::ViewCache;
use Modern::Perl;

our $VERSION = '1.0001'; # VERSION
our $AUTHORITY = 'cpan:CLEARBLT'; # AUTHORITY
# ABSTRACT: Create a code for a guest user to use to view a page
use Dancer2::Plugin;
use Carp;

has base_url => (
   is      => 'ro',
   default => sub {

t/00_core_keywords.t  view on Meta::CPAN

use Modern::Perl;
use lib 't/lib';
use lib 'lib';
use Test2::V0;
use Test2::Tools::Subtest qw/subtest_buffered subtest_streamed/;

use FindBin qw($Bin);

use Plack::Test;
use HTTP::Request::Common;
use JSON::MaybeXS;



( run in 0.242 second using v1.01-cache-2.11-cpan-4d50c553e7e )