Atto

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "JSON::MaybeXS" : "0",
            "Plack::Request" : "0",
            "WWW::Form::UrlEncoded" : "0",
            "perl" : "5.008001",
            "strict" : "0",
            "warnings" : "0"
         }
      },
      "test" : {
         "requires" : {
            "HTTP::Request::Common" : "0",
            "Plack::Test" : "0",
            "Test::More" : "0",
            "utf8" : "0"
         }
      }
   },
   "release_status" : "stable",
   "resources" : {
      "bugtracker" : {
         "web" : "https://github.com/robn/Atto/issues"

META.yml  view on Meta::CPAN

---
abstract: 'A tiny microservice builder'
author:
  - 'Rob Norris <robn@despairlabs.com>'
build_requires:
  HTTP::Request::Common: '0'
  Plack::Test: '0'
  Test::More: '0'
  utf8: '0'
configure_requires:
  ExtUtils::MakeMaker: '0'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.030, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html

Makefile.PL  view on Meta::CPAN

  "NAME" => "Atto",
  "PREREQ_PM" => {
    "Carp" => 0,
    "JSON::MaybeXS" => 0,
    "Plack::Request" => 0,
    "WWW::Form::UrlEncoded" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "HTTP::Request::Common" => 0,
    "Plack::Test" => 0,
    "Test::More" => 0,
    "utf8" => 0
  },
  "VERSION" => "0.005",
  "test" => {
    "TESTS" => "t/*.t"
  }
);


my %FallbackPrereqs = (
  "Carp" => 0,
  "HTTP::Request::Common" => 0,
  "JSON::MaybeXS" => 0,
  "Plack::Request" => 0,
  "Plack::Test" => 0,
  "Test::More" => 0,
  "WWW::Form::UrlEncoded" => 0,
  "strict" => 0,
  "utf8" => 0,
  "warnings" => 0
);

t/10-hello.t  view on Meta::CPAN

#!perl

use strict;
use warnings;

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


use Atto qw(hello);

sub hello {
    return "hello world";
}

my $app = Atto->psgi;

t/20-echo.t  view on Meta::CPAN

#!perl

use strict;
use warnings;

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


use Atto qw(echo);

sub echo {
    my %args = @_;
    return { echo => \%args };
}

t/30-utf8.t  view on Meta::CPAN

#!perl

use strict;
use warnings;
use utf8;

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

use Atto qw(faces);

my $faces = q{◎ܫ◎ ಠﭛಠ ⊙_ʘ ♨_♨ ಠ_ಠ};

sub faces {
    return $faces;
}



( run in 0.515 second using v1.01-cache-2.11-cpan-de7293f3b23 )